-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "core",
"version": "1.0.0",
"description": "SteamDesignTools",
"main": "build/server/index.js",
"scripts": {
"start": "NODE_ENV=development supervisor --watcch ./build --inspect ./build/server",
"dev": "node ./tools/dev",
"build": "node ./tools/build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xiao-e-yun/SteamDesignTools.git"
},
"bin": "build/server/index.js",
"author": "xiao-e-yun",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/xiao-e-yun/SteamDesignTools/issues"
},
"homepage": "https://github.com/xiao-e-yun/SteamDesignTools#readme",
"private": true,
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.9.1",
"@types/ws": "^7.4.7",
"chokidar": "^3.5.2",
"cross-env": "^7.0.3"
},
"dependencies": {
"edge-paths": "^2.2.1",
"express": "^4.17.1",
"is-port-reachable": "^3.0.0",
"jimp": "^0.16.1",
"puppeteer-core": "^10.4.0",
"ws": "^8.2.2"
},
"pkg": {
"scripts": "build/server/**/*.js",
"targets": [
"node14-win-x64"
],
"compress": "Brotli",
"outputPath": "dist/"
}
}