-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
35 lines (35 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
{
"name": "diepcustom",
"version": "1.0.0",
"description": "An open source diep.io custom private-server template",
"main": "index.js",
"contributors": [
"ABC <github.com/ABCxFF>",
"Binary <github.com/binary-person>",
"Crabby <github.com/Craabby>",
"diep.io <github.com/diepiodiscord>",
"xScripty (Void) <github.com/c86ec23b-fef1-4979-b2fa-b9adc351b8cc>",
"Nulled <github.com/Nul-led>"
],
"license": "AGPL-3.0-only",
"scripts": {
"build": "npx tsc",
"start": "node index",
"server": "yarn run build && yarn run start",
"docker:build": "docker build --tag diepcustom .",
"docker:start": "docker run --pull never --rm --publish ${PORT:-8080}:8080 --env PORT=8080 --env DEV_PASSWORD_HASH --env SERVER_INFO --env NODE_ENV --init --interactive --tty diepcustom",
"docker": "npm run docker:build && npm run docker:start"
},
"engines": {
"node": ">=16.3"
},
"dependencies": {
"chalk": "^4.1.1",
"tweetnacl": "^1.0.3",
"uWebSockets.js": "uNetworking/uWebSockets.js#v20.42.0"
},
"devDependencies": {
"@types/node": "^16.4.0",
"typescript": "^4.8.2"
}
}