-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.32 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.32 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
{
"name": "chocoearly",
"version": "1.0.0",
"description": "\"一个针对Chocolatey的图形化应用\"",
"main": "index.js",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OracleLoadstar/Chocoearly.git"
},
"keywords": [
"gui"
],
"author": "OracleLoadstar",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/OracleLoadstar/Chocoearly/issues"
},
"homepage": "https://github.com/OracleLoadstar/Chocoearly#readme",
"dependencies": {
"@types/node": "^22.15.29",
"async-exit-hook": "^2.0.1",
"brace-expansion": "^4.0.1",
"pnpm": "^10.11.0"
},
"build": {
"appId": "com.oracleloadstar.chocoearly",
"productName": "Chocoearly",
"directories": {
"output": "dist"
},
"files": [
"**/*",
"!node_modules/@types{,**/*}",
"!node_modules/electron{,**/*}"
],
"win": {
"target": [
"nsis"
],
"icon": "build/icon.ico"
},
"mac": {
"target": [
"dmg"
],
"icon": "build/icon.icns"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "build/icons"
}
},
"devDependencies": {
"electron": "^36.3.1",
"electron-builder": "^26.0.12"
}
}