forked from AntonUden/snake-multiplayer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.12 KB
/
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
41
42
43
44
45
{
"name": "multiplayer-space-snake",
"version": "2.0.0",
"description": "Multiplayer snake game in space - AKA SpaceSnake",
"keywords": [],
"license": "ISC",
"bugs": {
"url": "https://github.com/AskeFC/snake-multiplayer/issues"
},
"author": {
"name": "Aske Færch Christensen",
"email": "[email protected]",
"url": "https://AskeFC.net"
},
"contributors": [
{
"name": "Casper Børgesen",
"url": "https://github.com/chau-intl"
},
{
"name": "Anton Udén",
"url": "https://github.com/AntonUden"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/AskeFC/snake-multiplayer.git"
},
"main": "app.js",
"type": "module",
"scripts": {
"buntest": "bun --debug --use_strict app.js",
"nodeinspect": "node --inspect app.js",
"buninspect": "bun --inspect app.js",
"nodestart": "node app.js",
"bunstart": "bun app.js"
},
"dependencies": {
"colors": ">=1.4.0",
"express": ">=4.19.2",
"ocsp": "^1.2.0",
"unique-names-generator": ">=4.7.1",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.43.0"
}
}