-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 852 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 852 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
30
31
32
33
34
35
36
37
38
{
"name": "calc-plus-plus",
"version": "1.0.2",
"description": "modern and advanced electron calculator (name based in notepad++ :>)",
"main": "index.js",
"author": "JoseFernandezDK",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/doxdk"
},
"keywords": ["electron", "calculator", "modern", "calc"],
"scripts": {
"start": "electron .",
"package": "electron-builder",
"dist": "electron-builder --win"
},
"dependencies": {},
"devDependencies": {
"electron": "^33.2.1",
"electron-builder": "^24.6.0"
},
"build": {
"appId": "com.doxdk.calcplusplus",
"productName": "Calc++",
"files": [
"**/*",
"node_modules/**/*"
],
"directories": {
"output": "dist"
},
"win": {
"target": "nsis",
"icon": "calc.ico"
}
}
}