-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "@ripwords/myinvois-client",
"version": "0.4.0",
"description": "MyInvois client",
"scripts": {
"build": "tsdown",
"prerelease": "bun run lint && bun run build",
"postrelease": "git push --follow-tags",
"changelog": "changelogen --release",
"release": "bun run prerelease && bun run changelog && npm publish --access public",
"release:minor": "bun run prerelease && bun run changelog --minor && npm publish --access public",
"release:major": "bun run prerelease && bun run changelog --major && npm publish --access public",
"lint": "oxlint",
"test": "vitest"
},
"main": "dist/index.js",
"module": "src/index.ts",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"devDependencies": {
"@types/bun": "latest",
"@types/qrcode": "^1.5.5",
"changelogen": "^0.6.1",
"dotenv": "^16.5.0",
"oxlint": "^0.16.6",
"prettier": "^3.5.3",
"qrcode": "^1.5.4",
"tsdown": "^0.12.6",
"vitest": "^3.1.1"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"dependencies": {
"crypto": "^1.0.1",
"node-forge": "^1.3.1"
}
}