-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 808 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 808 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
39
40
41
42
{
"name": "sub2api-cli",
"version": "1.2.5",
"description": "CLI tool for sub2api admin API — covers all 323 admin endpoints",
"type": "module",
"main": "dist/index.js",
"bin": {
"s2a": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"sub2api",
"admin",
"cli",
"api-gateway"
],
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/yunhai-dev/sub2api-cli"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"typescript": "^5.5.0",
"tsx": "^4.19.0",
"@types/node": "^22.0.0"
}
}