-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.19 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
45
46
47
48
49
50
51
52
{
"name": "repetierer",
"version": "3.0.5",
"description": "(:",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/srpnt3/Repetierer.git"
},
"main": "app.js",
"scripts": {
"start": "electron . ",
"build": "electron-builder",
"release": "electron-builder -p=always"
},
"build": {
"appId": "net.srpnt3.repetierer",
"productName": "Repetierer",
"directories": {
"output": "./builds"
},
"win": {
"target": [
"nsis"
],
"icon": "./public/icons/icon.ico",
"publish": [
"github"
]
},
"nsis": {
"installerIcon": "./public/icons/icon.ico",
"uninstallerIcon": "./public/icons/icon.ico",
"installerSidebar": "./public/images/sidebar.bmp",
"oneClick": false,
"allowElevation": false,
"allowToChangeInstallationDirectory": true,
"artifactName": "Repetierer ${version}.${ext}"
}
},
"author": "srpnt3",
"dependencies": {
"electron-updater": "^4.3.8",
"exceljs": "^4.2.1",
"npm": "^6.14.13"
},
"devDependencies": {
"electron": "^9.4.0",
"electron-builder": "^22.10.5",
"electron-packager": "^15.2.0"
}
}