-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 998 Bytes
/
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
46
47
{
"name": "ankeeditoroffline",
"version": "1.0.2",
"description": "",
"main": "main.js",
"license": "ISC",
"scripts": {
"test": "electron .",
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"author": "etwxr9",
"devDependencies": {
"electron": "^19.0.8",
"electron-builder": "^23.1.0",
"electron-packager": "^15.1.0"
},
"build": {
"appId": "et.electron.editor",
"productName": "安科编辑器离线版",
"copyright": "Copyright © 2022 etwxr9",
"directories": {
"output": "bulid"
},
"asar": true,
"win": {
"icon": "icon.ico",
"target": [
{
"target": "portable"
}
]
},
"portable": {
"useZip": true
}
},
"dependencies": {
"@electron/remote": "^2.0.8",
"@octokit/request": "^5.4.12",
"dom-to-image": "^2.6.0",
"iconv-lite": "^0.6.3",
"random-org": "^2.1.0",
"sortablejs": "^1.15.0"
}
}