-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.81 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.81 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "softregtool",
"version": "1.1.5",
"description": "软著代码资料整理器 - 自动生成程序鉴别材料与AI辅助说明书",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder",
"pack:win": "electron-builder --win --dir"
},
"author": "",
"license": "MIT",
"devDependencies": {
"electron": "^31.0.2",
"electron-builder": "^24.13.3"
},
"dependencies": {
"docx": "^8.5.0",
"electron-store": "^8.2.0",
"electron-updater": "^6.3.0"
},
"build": {
"appId": "com.houxiaohou.softregtool",
"productName": "软著鉴别材料生成器",
"files": [
"src/**/*",
"package.json",
"build/icon.ico",
"build/icon.png",
"build/icon.icns"
],
"asar": true,
"icon": "icon",
"win": {
"target": [
"nsis"
],
"signAndEditExecutable": true,
"icon": "icon.ico",
"artifactName": "${productName}_Setup_${version}.${ext}",
"executableName": "softregtool"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"perMachine": false,
"installerIcon": "icon.ico",
"uninstallerIcon": "icon.ico",
"installerHeaderIcon": "icon.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "软著鉴别材料生成器"
},
"mac": {
"identity": null,
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
],
"icon": "icon.icns"
},
"linux": {
"target": [
"AppImage"
],
"icon": "icon.png"
},
"publish": [
{
"provider": "github"
}
],
"directories": {
"buildResources": "build"
}
}
}