-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
36 lines (36 loc) · 935 Bytes
/
package.json
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
{
"name": "wisp-server-node",
"version": "1.1.7",
"type": "commonjs",
"description": "",
"scripts": {
"start": "node dist/createServer.js",
"build": "tsc",
"dev": "tsc --watch",
"pretty": "npx prettier -w *",
"prepack": "npm run build"
},
"main": "dist/ConnectionHandler.js",
"types": "dist/ConnectionHandler.d.ts",
"files": [
"dist",
"bin.js"
],
"keywords": [],
"author": "",
"repository": {
"type": "git",
"url": "git+https://github.com/MercuryWorkshop/wisp-server-node.git"
},
"homepage": "https://github.com/MercuryWorkshop/wisp-server-node#readme",
"license": "AGPL-3.0-only",
"devDependencies": {
"@types/ws": "^8.5.12",
"typescript": "^5.6.2"
},
"dependencies": {
"bufferutil": "^4.0.8",
"utf-8-validate": "^6.0.4",
"ws": "^8.18.0"
}
}