-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.3 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.3 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
{
"name": "clicraft",
"version": "1.0.0",
"description": "一键切换 CLI 环境变量配置工具",
"author": "YCode",
"license": "MIT",
"main": "out/main/index.js",
"type": "module",
"scripts": {
"dev": "cross-env NO_SANDBOX=1 electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.18",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"cross-env": "^7.0.3",
"electron": "^33.2.0",
"electron-builder": "^24.13.3",
"electron-vite": "^2.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^4.1.18",
"typescript": "^5.6.3",
"vite": "^5.4.11"
},
"build": {
"appId": "com.ycode.clicraft",
"productName": "CliCraft",
"directories": {
"output": "release"
},
"files": [
"out/**/*"
],
"mac": {
"target": [
"dmg"
],
"category": "public.app-category.utilities"
},
"win": {
"target": [
"nsis"
]
},
"linux": {
"target": [
"AppImage"
]
}
},
"dependencies": {
"@ant-design/icons": "^6.1.0",
"antd": "^6.3.0",
"smol-toml": "^1.6.0"
}
}