-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 926 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 926 Bytes
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
{
"name": "@paid-tw/cli",
"version": "0.1.2",
"license": "MIT",
"private": false,
"type": "module",
"bin": {
"paid": "dist/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "rollup -c && tsc -p tsconfig.json --declaration --emitDeclarationOnly --outDir dist",
"lint": "eslint .",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@iarna/toml": "^3.0.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"node-fetch": "^3.3.2",
"string-width": "^8.1.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-typescript": "^11.1.6",
"eslint": "^9.1.1",
"rollup": "^4.21.2",
"tslib": "^2.6.3",
"tsx": "^4.7.1",
"typescript": "^5.4.5"
},
"publishConfig": {
"access": "public"
}
}