-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 806 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 806 Bytes
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
{
"name": "drplayer-server",
"version": "1.0.0",
"description": "DrPlayer Production Server - Minimal build for PKG",
"main": "./production-server.cjs",
"bin": "./production-server.cjs",
"type": "commonjs",
"scripts": {
"start": "node production-server.cjs",
"pkg:win": "pkg . --target node18-win-x64 --output dist-binary/drplayer-server-win.exe",
"pkg:win:optimized": "pkg . --target node18-win-x64 --output dist-binary/drplayer-server-win.exe --compress Brotli --public-packages \"*\" --public --options \"max-old-space-size=512\""
},
"dependencies": {
"fastify": "^4.29.1",
"@fastify/static": "^6.12.0"
},
"engines": {
"node": ">=18.0.0"
},
"pkg": {
"assets": [
"./apps/**/*"
],
"scripts": [
"./production-server.cjs"
]
}
}