-
Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.77 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.77 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
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "vcp-chat-desktop",
"version": "4.4.2",
"description": "一个为VCP服务器打造的AI聊天桌面客户端",
"main": "main.js",
"scripts": {
"start": "electron .",
"start:desktop": "electron . --desktop-only",
"start:rag-observer": "electron . --rag-observer-only",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"keywords": [
"VCP",
"AI",
"Chat",
"Desktop",
"Electron"
],
"author": "莱恩 (由小吉辅助生成)",
"license": "MIT",
"devDependencies": {
"@electron/rebuild": "^4.0.3",
"electron": "^37.2.6",
"electron-builder": "^26.0.12",
"node-addon-api": "^8.3.1",
"node-gyp": "^11.4.2"
},
"dependencies": {
"@3d-dice/dice-box": "^1.1.4",
"animejs": "^4.0.2",
"axios": "^1.10.0",
"cheerio": "^1.1.2",
"child_process": "^1.0.2",
"chokidar": "^4.0.3",
"clientside-search": "^1.8.1",
"clipboard-event": "^1.6.0",
"codemirror": "^5.65.19",
"diff-match-patch": "^1.0.5",
"dotenv": "^17.2.3",
"eslint": "^9.39.1",
"exceljs": "^4.4.0",
"express": "^5.1.0",
"flexsearch": "^0.8.212",
"fs-extra": "^11.3.2",
"glob": "^10.0.0",
"hnswlib-node": "^3.0.0",
"html2canvas": "^1.4.1",
"iconv-lite": "^0.6.3",
"jsdom": "^27.0.1",
"mammoth": "^1.9.1",
"marked": "^12.0.0",
"minimatch": "^9.0.0",
"morphdom": "^2.7.7",
"music-metadata": "^11.4.0",
"node-fetch": "^3.3.2",
"node-global-key-listener": "^0.3.0",
"node-pty": "^1.1.0-beta37",
"node-schedule": "^2.1.1",
"os": "^0.1.2",
"pdf-parse": "^1.1.1",
"pdf-poppler": "^0.2.1",
"portfinder": "^1.0.37",
"puppeteer": "^24.15.0",
"sharp": "^0.34.2",
"stylelint": "^16.25.0",
"tesseract.js": "^6.0.1",
"three": "^0.178.0",
"tmp": "^0.2.5",
"trash": "^9.0.0",
"turndown": "^7.2.1",
"ws": "^8.17.0",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0"
},
"optionalDependencies": {
"electron-edge-js": "^38.0.0"
},
"build": {
"appId": "com.vcp.chatdesktop",
"productName": "VCP聊天客户端",
"files": [
"main.js",
"preload.js",
"preloads/**/*",
"renderer.js",
"main.html",
"image-viewer.html",
"text-viewer.html",
"style.css",
"assets/",
"modules/**/*",
"vendor/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
},
"mac": {
"category": "public.app-category.productivity",
"icon": "assets/icon.icns"
},
"win": {
"target": "nsis",
"icon": "assets/icon.ico"
},
"linux": {
"target": "AppImage",
"icon": "assets"
}
}
}