-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.44 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
46
47
48
49
{
"name": "ogarii",
"version": "1.3.6",
"description": "FOSS implementation of a private Agar.io gameserver",
"license": "Apache-2.0",
"scripts": {
"start": "node cli/index.js",
"start2": "nodemon --experimental-specifier-resolution=node --inspect cli/index.js --ignore 'logs/*' --ignore settings.json --ignore log-settings.json --ignore 'assembly/*'",
"asbuild:debug": "asc assembly/index.ts --target debug --sourceMap",
"asbuild:dev": "nodemon -e ts -w ./assembly --exec \"npm run asbuild:debug && npm run test\"",
"asbuild:release": "asc assembly/index.ts --target release",
"asbuild": "npm run asbuild:debug && npm run asbuild:release",
"test": "node tests"
},
"author": {
"name": "Luka Djokovic",
"url": "https://github.com/Luka967",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Luka967/OgarII.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/Luka967/OgarII/issues"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.8",
"simple-peer": "^9.11.0",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.3.0",
"wrtc": "^0.4.7",
"ws": "^8.4.2"
},
"engines": {
"node": "16.x",
"desc": "this opt for glitch.com, max support node ver is 10, uws ver v18.2.0"
},
"devDependencies": {
"assemblyscript": "^0.24.1"
},
"type": "module",
"exports": {
".": {
"import": "./build/release.js",
"types": "./build/release.d.ts"
}
}
}