-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.42 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.42 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "fishpi-cli",
"version": "0.1.15",
"description": "A fishpi command line tool.",
"type": "module",
"bin": {
"fishpi": "lib/cli.cjs"
},
"files": [
"lib/cli.cjs",
"lib/cli.cjs.map",
"README.md"
],
"scripts": {
"cli": "node lib/cli.cjs",
"start": "npm run build && npm run cli",
"clear": "rimraf lib/*.map lib/*.d.ts lib/*.cjs",
"format": "prettier --write src/",
"prebuild": "npm run clear && npm run format",
"build": "tsdown",
"prepare": "npm run build"
},
"keywords": [
"fishpi",
"club",
"cli"
],
"bugs": {
"url": "https://github.com/FishPiOffical/fishpi.js/issues"
},
"homepage": "https://github.com/FishPiOffical/fishpi.js/tree/master/cli#readme",
"author": {
"name": "Hancel.Lin",
"email": "imlinhanchao@foxmail.com",
"url": "https://github.com/imlinhanchao"
},
"license": "MIT",
"engines": {
"node": ">=12.0"
},
"dependencies": {
"blessed": "^0.1.81",
"commander": "^14.0.0",
"fishpi": "^0.1.21",
"inquirer": "^12.9.4",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@types/blessed": "^0.1.25",
"@types/js-md5": "^0.8.0",
"@types/node": "^24.3.0",
"@types/node-fetch": "^2.6.13",
"@types/ws": "^8.18.1",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"tsdown": "^0.20.3",
"typescript": "^5.9.2"
},
"release": {
"branches": [
"master"
]
}
}