-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.2 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
{
"name": "ai-assistant-status-monitor",
"version": "2.2.0",
"description": "AI助手状态监控面板 - 支持 Kimi Code CLI 和 Claude Code",
"main": "dist/main/main.js",
"scripts": {
"dev": "concurrently -k -n VITE,ELECTRON -c blue,green \"vite\" \"wait-on http://localhost:5173 && electron dist/main/main.js --dev\"",
"start": "npm run build:main && npm run build:renderer && electron dist/main/main.js",
"build:main": "tsc -p tsconfig.main.json",
"build:renderer": "vue-tsc --noEmit && vite build && node scripts/copy-renderer-assets.js",
"build": "npm run build:main && npm run build:renderer && electron-builder",
"typecheck": "vue-tsc --noEmit && tsc -p tsconfig.main.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"release:dry-run": "commit-and-tag-version --dry-run",
"release": "commit-and-tag-version",
"landing:dev": "npm run dev --prefix landing",
"landing:build": "npm run build --prefix landing",
"landing:preview": "npm run preview --prefix landing"
},
"keywords": [
"ai",
"status",
"monitor",
"kimi",
"claude"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Alfxjx/ai-signal-light.git"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/qrcode": "^1.5.6",
"@types/ws": "^8.18.1",
"@vitejs/plugin-vue": "^5.1.0",
"commit-and-tag-version": "^12.7.3",
"concurrently": "^9.0.0",
"electron": "^28.0.0",
"electron-builder": "^24.0.0",
"typescript": "^5.5.0",
"vite": "^5.4.0",
"vitest": "^3.0.0",
"vue-tsc": "^2.1.0",
"wait-on": "^8.0.0"
},
"dependencies": {
"axios": "^1.17.0",
"qrcode": "^1.5.4",
"vue": "^3.5.35",
"ws": "^8.16.0"
},
"overrides": {
"std-env": "^3.0.0"
},
"build": {
"appId": "com.example.ai-status-monitor",
"productName": "AI状态监控",
"directories": {
"output": "dist"
},
"files": [
"dist/main/**/*",
"dist/renderer/**/*",
"dist/shared/**/*"
],
"mac": {
"target": "dmg"
},
"win": {
"target": [
"portable"
]
},
"linux": {
"target": "AppImage"
}
}
}