-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 900 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 900 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
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "picograph",
"version": "0.1.0",
"description": "PicoGraph desktop wrapper",
"main": "electron-main.js",
"scripts": {
"start": "electron .",
"prebuild:win": "electron-icon-builder --input=icon.png --output=build --flatten",
"build:win": "electron-builder --win --x64",
"build": "npm run build:win"
},
"devDependencies": {
"electron": "^30.0.0",
"electron-builder": "^24.6.3",
"electron-icon-builder": "^2.0.1",
"electron-reloader": "^1.2.3"
},
"build": {
"appId": "com.litruv.picograph",
"productName": "PicoGraph",
"asar": false,
"directories": {
"output": "dist"
},
"files": [
"**/*",
"!picotool/**/*"
],
"win": {
"icon": "build/icons/icon.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
}
}
}