-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 860 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 860 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
{
"name": "deskot",
"version": "0.0.0",
"description": "",
"main": "build/main.js",
"scripts": {
"copy-conf": "copyfiles -u 1 \"config/**/*\" build/config",
"copy-deskots": "copyfiles -u 1 \"deskots/**/*\" build/deskots",
"copy-public": "copyfiles -u 1 \"public/**/*\" build/public",
"prepare": "tsc && npm run copy-conf && npm run copy-deskots && npm run copy-public",
"start": "npm run prepare && nodemon --watch src/main.ts --exec npm run exec",
"exec": "cross-env DEBUG=true electron ."
},
"author": "player_decuple",
"license": "MIT",
"devDependencies": {
"@types/jsdom": "^21.1.4",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"electron": "^27.0.2",
"electron-builder": "^24.6.4",
"image-size": "^1.0.2",
"jsdom": "^22.1.0",
"nodemon": "^3.0.1",
"typescript": "^5.2.2"
}
}