-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.07 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
{
"name": "sleep-linux-gsm",
"version": "0.0.5",
"description": "Put your server to rest while no one is using it",
"bin": "build/index.js",
"main": "build/index.js",
"scripts": {
"start": "npm run prebuild && npm run build:typescript && node .",
"prebuild": "rimraf ./build/ ./bin/ && cpx-fixed \"./views/**/*.*\" ./build/views",
"build": "npm-run-all build:*",
"build:typescript": "tsc",
"build:target": "pkg build/index.js --config package.json --compress GZip --target node22-win-x64,node22-linux-x64 --out-path ./bin/"
},
"author": "vincss",
"license": "ISC",
"dependencies": {
"express": "^4.21.1",
"express-handlebars": "^7.0.4",
"js-yaml": "^4.1.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/js-yaml": "^4.0.3",
"@types/node": "^14.17.12",
"cpx-fixed": "^1.6.0",
"npm-run-all": "^4.1.5",
"@yao-pkg/pkg": "^6.1.1",
"rimraf": "^3.0.2",
"typescript": "^5.0.3"
},
"pkg": {
"scripts": "build/*.js",
"assets": [
"build/views/**/*"
]
}
}