-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 959 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 959 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
39
40
41
42
{
"name": "notepadxi",
"version": "1.0.0",
"description": "Notepad XI",
"main": "launcher.js",
"dependencies": {
"electron-log": "^5.1.7",
"electron-updater": "^6.1.8"
},
"devDependencies": {
"electron": "^31.3.1",
"electron-builder": "^24.9.1"
},
"scripts": {
"test": "electron-builder start --win --x64 --ia32",
"dist": "electron-builder --win --x64",
"start": "electron ."
},
"author": "Vigneshkumar 212, CodingReef Dev",
"license": "",
"build": {
"appId": "com.codingreefdev.notepadxi",
"productName": "Notepad XI",
"copyright": "Copyright © 2021 CodingReef Dev",
"win": {
"target": "nsis",
"icon": "icon.ico"
},
"nsis": {
"oneClick": true,
"perMachine": true,
"allowToChangeInstallationDirectory": false
},
"fileAssociations": [
{
"ext": "txt",
"name": "Text Document",
"role": "Editor"
}
]
}
}