-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 930 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 930 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
29
{
"name": "codeco",
"version": "1.0.0",
"description": "A wild and unhinged virtual girlfriend simulator",
"main": "src/main.js",
"scripts": {
"start": "electron . --no-sandbox --disable-gpu-sandbox --disable-dev-shm-usage",
"dev": "electron . --inspect=5858 --no-sandbox",
"make": "electron-forge make",
"package": "electron-forge package",
"clean": "rm -rf node_modules package-lock.json && npm install"
},
"devDependencies": {
"@electron-forge/cli": "^7.2.0",
"@electron-forge/maker-deb": "^7.8.2",
"@electron-forge/maker-dmg": "^7.8.2",
"@electron-forge/maker-rpm": "^7.8.2",
"@electron-forge/maker-squirrel": "^7.8.2",
"@electron-forge/maker-zip": "^7.8.2",
"@electron-forge/plugin-auto-unpack-natives": "^7.8.2",
"@electron-forge/plugin-fuses": "^7.8.2",
"@electron/fuses": "^2.0.0",
"electron": "^28.0.0"
},
"dependencies": {
"chokidar": "^3.5.3",
"node-notifier": "^10.0.1"
}
}