-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.22 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.22 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "winlinez",
"private": true,
"author": {
"name": "zhyDaDa",
"email": "zhyhymy040302@163.com"
},
"version": "0.0.0",
"type": "module",
"main": "main.cjs",
"homepage": "./",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"dist": "npm run build && electron-builder",
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"builder": "electron-builder"
},
"build": {
"appId": "zhyDaDa_WinLinez",
"productName": "zhyDaDa_WinLinez",
"files": [
"dist/**/*",
"./main.cjs"
],
"directories": {
"output": "electron_out"
},
"nsis": {
"oneClick": false,
"language": 2052,
"allowToChangeInstallationDirectory": true,
"perMachine": true
},
"win": {
"icon": "build/icon.ico",
"target": "nsis"
},
"extends": null
},
"dependencies": {
"antd": "^5.22.6",
"antd-style": "^3.7.1",
"less": "^4.2.1",
"motion": "^11.15.0",
"react": "^18.3.1",
"react-countup": "^6.5.3",
"react-dom": "^18.3.1",
"vite": "^6.0.5"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react-swc": "^3.7.2",
"connect": "^3.7.0",
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"eslint": "^9.15.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"express": "^4.17.1",
"globals": "^15.12.0",
"http": "^0.0.1-security",
"st": "^2.0.0",
"vite": "^6.0.1"
},
"config": {
"forge": {
"packagerConfig": {},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "my_electron_app"
}
},
{
"name": "@electron-forge/maker-zip",
"platforms": [
"darwin"
]
},
{
"name": "@electron-forge/maker-deb",
"config": {}
},
{
"name": "@electron-forge/maker-rpm",
"config": {}
}
]
}
}
}