-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "numlex",
"productName": "Numlex",
"version": "3.1.0",
"description": "Notepad based calculator build with Electron",
"main": "main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder"
},
"build": {
"appId": "com.numlex.app",
"win": {
"target": "nsis",
"icon": "numlex.ico"
}
},
"devDependencies": {
"@electron-forge/cli": "^7.4.0",
"@electron-forge/maker-deb": "^7.4.0",
"@electron-forge/maker-rpm": "^7.4.0",
"@electron-forge/maker-squirrel": "^7.4.0",
"@electron-forge/maker-zip": "^7.4.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.4.0",
"@electron-forge/plugin-fuses": "^7.4.0",
"@electron/fuses": "^1.8.0",
"electron": "30.1.0",
"electron-builder": "^22.14.13",
"electron-packager": "^17.1.2"
},
"keywords": [],
"author": {
"name": "Qulierm",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"codemirror": "^5.65.16",
"electron-squirrel-startup": "^1.0.1",
"electron-store": "^10.0.0",
"sortablejs": "^1.15.2"
}
}