-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 802 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 802 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
{
"name": "wispjs",
"version": "2.4.0",
"type": "module",
"description": "A package for interacting with Wisp-based server panels",
"main": "dist/wisp.js",
"types": "dist/wisp.d.ts",
"scripts": {
"build": "tsc",
"build-docs": "typedoc wisp.ts wisp_api/index.ts wisp_socket/index.ts wisp_api/apis/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CFC-Servers/WispJS.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/CFC-Servers/WispJS/issues"
},
"homepage": "https://github.com/CFC-Servers/WispJS#readme",
"dependencies": {
"socket.io-client": "^4.7.2",
"strip-ansi": "^7.1.0"
},
"devDependencies": {
"@types/node": "^20.5.4",
"typedoc": "^0.25.4",
"typescript": "^5.3.3"
}
}