-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "excel-up-pricer",
"version": "2.0.0",
"description": "Facilitates the increase or decrease of grocery prices with a simple click.",
"main": "./src/main.js",
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"dist": "electron-builder -p always"
},
"repository": "https://github.com/StivenCodess/ExcelUpPricer",
"build": {
"appId": "com.stivencodess.exceluppricer",
"productName": "Excel Up Pricer",
"win": {
"target": "nsis"
},
"directories": {
"output": "dist"
},
"publish": {
"provider": "github",
"owner": "StivenCodess",
"releaseType": "release"
}
},
"keywords": [],
"author": "StivenCodess",
"license": "ISC",
"devDependencies": {
"electron": "^27.0.2",
"electron-builder": "^24.6.4"
},
"dependencies": {
"electron-log": "^5.0.0",
"electron-updater": "^6.1.4",
"toastify-js": "^1.12.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.0/xlsx-0.20.0.tgz"
}
}