-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.38 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.38 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"type": "module",
"overrides": {
"*.cjs": {
"type": "commonjs"
}
},
"name": "aptxcode",
"exports": {
"./preload.mjs": "./preload.mjs"
},
"version": "1.0.3",
"description": "APTXCODE",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"package": "electron-builder --publish never",
"test": "echo \"Error: no test specified\" && exit 1"
},
"config": {
"electron": {
"disableInputMethod": true
}
},
"author": "",
"license": "MIT",
"dependencies": {
"bencode": "^2.0.2",
"electron-squirrel-startup": "^1.0.1",
"handlebars": "^4.7.8"
},
"devDependencies": {
"electron": "^28.3.3",
"electron-builder": "^25.1.8",
"electron-icon-builder": "^2.0.1"
},
"build": {
"appId": "cn.aptx.aptxcode",
"productName": "APTXCODE",
"directories": {
"output": "dist"
},
"files": [
"**/*"
],
"mac": {
"category": "public.app-category.utilities",
"icon": "./assets/icons/icon",
"target": "dmg"
},
"win": {
"target": "portable",
"icon": "./assets/icons/icon"
},
"linux": {
"target": "AppImage",
"icon": "./assets/icons/icon.png"
},
"asar": true,
"asarUnpack": "templates",
"extraResources": [
{
"from": "templates",
"to": "templates"
}
]
}
}