-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.97 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "sentences-desktop",
"version": "1.4.1",
"description": "Sentences-Desktop",
"main": "main.js",
"scripts": {
"test": "electron .",
"pack": "electron-builder --dir",
"postinstall": "electron-builder install-app-deps",
"dist": "electron-builder",
"dist-win": "electron-builder --win --ia32",
"dist-win64": "electron-builder --win --x64",
"dist-mac": "electron-builder --mac",
"dist-linux": "electron-builder --linux"
},
"repository": {
"type": "git",
"url": "git+https://github.com/noneSycamore/sentences-desktop.git"
},
"keywords": [
"hitokoto"
],
"author": "Sycamore",
"license": "MIT",
"dependencies": {
"electron-store": "^8.1.0",
"node-abi": "^3.35.0",
"electron-addtodesktop": "^1.0.4"
},
"bugs": {
"url": "https://github.com/noneSycamore/sentences-desktop/issues"
},
"homepage": "https://github.com/noneSycamore/sentences-desktop#readme",
"devDependencies": {
"electron": "^12.2.3",
"electron-builder": "23.6.0"
},
"build": {
"appId": "com.Sentences",
"productName": "Sentences Desktop",
"files": [
"build/icons/*",
"src/**/*",
"main.js",
"node_modules/**/*"
],
"directories": {
"output": "build/app",
"app": "./",
"buildResources": "assets"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "./build/icons/win/icon.ico",
"installerHeader": "./build/icons/win/icon.bmp",
"uninstallerIcon": "./build/icons/win/icon.ico",
"perMachine": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"license": "./src/license/license.txt"
},
"win": {
"icon": "./build/icons/win/icon.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"linux": {
"icon": "./build/icons/png/512x512.png"
}
}
}