-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
37 lines (37 loc) · 984 Bytes
/
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
{
"name": "app-uc-unit-manager",
"version": "1.0.0",
"description": "Unit Manager is a GUI tool that helps manage Personium Cells on any Personium Unit.",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron main.js",
"build:win": "electron-builder"
},
"repository": {
"type": "git",
"url": "git+https://github.com/personium/app-uc-unit-manager.git"
},
"author": "",
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/personium/app-uc-unit-manager/issues"
},
"homepage": "https://github.com/personium/app-uc-unit-manager#readme",
"devDependencies": {
"electron": "^16.0.3",
"electron-builder": "^22.14.5",
"eslint": "^8.3.0"
},
"build": {
"files": "!bar/**/*",
"appId": "app-uc-unit-manager",
"win": {
"target": [{
"target": "zip",
"arch": ["x64"]
}],
"icon": "assets/icon/icon256.png"
}
}
}