-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
32 lines (32 loc) · 892 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
{
"name": "obscore",
"version": "0.1.0",
"description": "A platform fighter scoreboard controller",
"scripts": {
"start:host": "ts-node src/host/main",
"prebuild:host": "parcel build src/host/main.ts",
"build:host": "npm run prebuild:host && npm run nexe",
"nexe": "nexe dist/main.js",
"pkg": "pkg dist/main.js --targets node16-win-x64 --compress GZip"
},
"repository": {
"type": "git",
"url": "github:waffln/OBScore"
},
"engines": {
"node": ">=14"
},
"author": "waffeln",
"license": "MIT",
"bugs": "https://github.com/waffln/OBScore/issues",
"homepage": "https://github.com/waffln/OBScore",
"devDependencies": {
"@types/node": "^16.7.13",
"chalk": "^4.1.2",
"nexe": "^4.0.0-beta.19",
"parcel": "^2.2.1",
"pkg": "^5.5.2",
"socket.io": "^4.2.0",
"ts-node": "^10.4.0"
}
}