-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.55 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
{
"name": "coderbox",
"version": "1.7.0",
"description": "基于electron的跨平台的程序员小工具集",
"main": "main.js",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"start": "electron .",
"build-dist:linux": "electron-builder -l",
"build-dist:win": "electron-builder -w"
},
"build": {
"appId": "com.lizl6.coderbox",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"asar": true,
"directories": {
"output": "./dist"
},
"linux": {
"target": [
"appimage"
]
},
"win": {
"icon": "./src/logo.png",
"target": [
"nsis"
]
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowElevation": true,
"shortcutName": "CoderBox工具箱"
}
},
"keywords": [
"coderbox",
"加密",
"编码",
"base64"
],
"author": "lizl6",
"license": "Apache-2.0",
"devDependencies": {
"electron": "^20.1.0"
},
"dependencies": {
"@popperjs/core": "^2.11.6",
"air-datepicker": "^3.3.4",
"axios": "^1.1.3",
"bootstrap": "^5.2.0",
"bootstrap-icons": "^1.9.1",
"crypto-js": "^4.1.1",
"electron-store": "^8.1.0",
"jsbarcode": "^3.11.5",
"jsencrypt": "^3.2.1",
"qrcode": "^1.5.1",
"vue": "^3.2.38",
"x2js": "^3.4.3"
}
}