-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 988 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
37
38
39
40
{
"name": "uwuchat2",
"version": "0.0.4",
"description": "A real-time gaming network library using WebSockets",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist",
"build": "npm run clean && tsc --declaration",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"author": "Victor Taelin <[email protected]>",
"license": "MIT",
"dependencies": {
"glob": "^11.0.0",
"isomorphic-ws": "^5.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^20.14.12",
"@types/ws": "^8.5.11",
"html-webpack-plugin": "^5.5.0",
"rimraf": "^6.0.1",
"ts-loader": "^9.5.1",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"repository": {
"type": "git",
"url": "https://github.com/UwU-Jogos/uwuchat2.git"
},
"keywords": [
"websocket",
"real-time",
"chat",
"gaming"
]
}