-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.08 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.08 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "fishpi",
"version": "0.1.27",
"description": "A Package to use API of fishpi.",
"type": "module",
"types": "lib/index.d.mts",
"main": "lib/index.cjs",
"module": "lib/index.mjs",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
},
"./browser": {
"types": "./lib/browser/index.d.ts",
"import": "./lib/browser/index.js"
}
},
"files": [
"lib/index*",
"lib/browser",
"lib/fishpi.min.js",
"README.md"
],
"scripts": {
"cli": "node lib/cli.cjs",
"start": "npm run build && npm run cli",
"clear": "rimraf lib/*.map lib/*.d.ts lib/*.cjs",
"clear:types": "rimraf lib/types",
"format": "prettier --write src/ && prettier --write cli/src",
"link:cli": "node ./utils/cli-link.cjs",
"prebuild": "npm run clear && npm run link:cli && npm run format",
"build": "tsdown && mv lib/index.iife.js lib/fishpi.min.js",
"docs:build": "typedoc",
"docs:watch": "typedoc --watch",
"prepare": "npm run build"
},
"keywords": [
"fishpi",
"club",
"api"
],
"bugs": {
"url": "https://github.com/FishPiOffical/fishpi.js/issues"
},
"homepage": "https://github.com/FishPiOffical/fishpi.js#readme",
"author": {
"name": "Hancel.Lin",
"email": "imlinhanchao@foxmail.com",
"url": "https://github.com/imlinhanchao"
},
"license": "MIT",
"engines": {
"node": ">=12.0"
},
"dependencies": {
"form-data": "^4.0.0",
"js-md5": "^0.7.3",
"reconnecting-websocket": "^4.4.0",
"tslib": "^2.8.1",
"ws": "^8.4.2"
},
"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",
"blessed": "^0.1.81",
"commander": "^14.0.0",
"inquirer": "^12.9.4",
"node-fetch": "^2.7.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"tsdown": "^0.20.3",
"typedoc": "^0.28.17",
"typedoc-plugin-markdown": "^4.10.0",
"typescript": "^5.9.2"
},
"release": {
"branches": [
"master"
]
}
}