-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1 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
{
"name": "electron-censor-app",
"version": "1.0.0",
"description": "https://github.com/BaseMax/electron-censor-app",
"main": "dist/main.js",
"scripts": {
"start": "electron .",
"build": "tsc",
"postbuild": "copyfiles \"./public/**/*\" ./dist/",
"watch": "tsc --watch",
"dev": "electron . --watch",
"debug": "electron . --verbose",
"package": "electron-builder --win",
"dist": "electron-builder"
},
"build": {
"appId": "com.example.electron-censor-app",
"productName": "Electron Censor App",
"win": {
"target": [
"nsis"
],
"icon": "public/icons/icon.ico"
},
"directories": {
"output": "dist"
}
},
"keywords": [],
"author": "Max Base",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.10.2",
"copyfiles": "^2.4.1",
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"typescript": "^5.7.2"
},
"dependencies": {
"electron-reload": "^2.0.0-alpha.1",
"glob": "^11.0.0"
}
}