-
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) · 785 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 785 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": "electron_development",
"version": "1.0.0",
"description": "Base Electron Project For Development",
"main": "electron/electron.js",
"author": "Matt Paine <matt@mattsoftware.com>",
"license": "MIT",
"private": false,
"scripts": {
"clean": "rm -fr dist build",
"electron": "electron .",
"dist": "yarn dist:pi",
"dist:pi": "electron-builder --linux AppImage --armv7l"
},
"devDependencies": {
"electron-builder": "^20.3.1",
"electron": "1.7.9"
},
"build": {
"appId": "com.mattsoftware.electron_development",
"productName": "Electron Builder",
"copyright": "Copyright © 2018 Matt Paine <matt@mattsoftware.com>",
"appImage": {
"systemIntegration": "doNotAsk"
},
"snap": null,
"extends": null
}
}