-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"name": "electron-file-editor",
"version": "1.0.0",
"description": "File editor with search and replace functionality",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"rebuild": "electron-rebuild -f -w your module",
"postinstall": "electron-builder install-app-deps",
"app:dir": "electron-builder --dir",
"app:dist": "electron-builder"
},
"build": {
"appId": "com.yourcompany.electronfileeditor",
"productName": "ElectronFileEditor",
"files": [
"main.js",
"index.html",
"renderer.js",
"package.json",
"style.css",
"icons.jon"
],
"win": {
"target": "portable",
"icon": "icon.ico"
}
},
"dependencies": {
"custom-electron-titlebar": "^4.2.8",
"electron-reloader": "^1.2.3",
"fs": "^0.0.1-security",
"path": "^0.12.7"
},
"devDependencies": {
"@electron/packager": "^18.3.3",
"electron": "^31.1.0",
"electron-builder": "^24.13.3",
"electron-rebuild": "^3.2.9",
"custom-electron-titlebar": "4.2.8"
},
"author": "Laura",
"license": "ISC"
}