-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
44
{
"name": "beholder-electron-example",
"version": "0.0.1",
"description": "",
"main": "app.js",
"scripts": {
"start": "electron .",
"build": "webpack",
"build:watch": "webpack --watch",
"rebuild": "electron-rebuild",
"dist": "electron-builder --dir",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/project-beholder/beholder-electron-example.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/project-beholder/beholder-electron-example/issues"
},
"homepage": "https://github.com/project-beholder/beholder-electron-example#readme",
"dependencies": {
"@nut-tree/nut-js": "^1.5.0",
"electron": "^8.5.1"
},
"devDependencies": {
"electron-builder": "^22.6.1",
"electron-rebuild": "^2.0.1"
},
"build": {
"appId": "beholder",
"mac": {
"category": "toolkit"
},
"files": [
"./app.js",
"./index.html",
"build/**/*",
"styles/**/*"
]
}
}