-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 819 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 819 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
{
"name": "@skyblock-server/client",
"version": "1.0.0",
"description": "Public Client for SkyblockServer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "node scripts/clean.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SkyblockServer/Client.git"
},
"author": "TBHGodPro",
"license": "ISC",
"bugs": {
"url": "https://github.com/SkyblockServer/Client/issues"
},
"homepage": "https://github.com/SkyblockServer/Client#readme",
"devDependencies": {
"@types/node": "^20.2.4",
"@types/ws": "^8.5.4",
"typescript": "^5.0.4"
},
"dependencies": {
"@skyblock-server/protocol": "^1.0.13",
"bufferutil": "^4.0.7",
"typed-emitter": "^2.1.0",
"ws": "^8.13.0"
}
}