forked from SchneeHertz/chat-xiuliu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.93 KB
/
package.json
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
{
"name": "chat-xiuliu",
"private": true,
"version": "2.2.9",
"description": "ChatGPT Client with Function Calling",
"author": "SchneeHertz",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"start": "chcp 65001 && electron --trace-warnings .",
"pack": "electron-builder --dir",
"dist": "vite build && electron-builder"
},
"build": {
"appId": "electron.chat.xiuliu",
"directories": {
"output": "out"
},
"files": [
"dist/index.html",
"dist/assets/*",
"index.js",
"preload.js",
"modules/*",
"utils/*"
],
"extraResources": [
{
"from": "resources/extraResources",
"to": "extraResources",
"filter": [
"sox"
]
}
],
"win": {
"target": [
"zip"
],
"icon": "public/icon.ico"
}
},
"devDependencies": {
"@vicons/fa": "^0.12.0",
"@vicons/fluent": "^0.12.0",
"@vicons/ionicons4": "^0.12.0",
"@vitejs/plugin-vue": "^4.0.0",
"electron": "^26.2.3",
"electron-builder": "^24.6.4",
"highlight.js": "^11.8.0",
"highlightjs-copy": "^1.0.4",
"markdown-it": "^13.0.2",
"naive-ui": "^2.35.0",
"pinia": "^2.1.7",
"stylus": "^0.59.0",
"unplugin-auto-import": "^0.16.6",
"unplugin-vue-components": "^0.25.1",
"vite": "^4.1.0",
"vue": "^3.2.45"
},
"dependencies": {
"@schneehertz/google-it": "^1.7.3",
"axios": "^1.4.0",
"dayjs": "^1.11.10",
"electron-window-state": "^5.0.3",
"html-to-text": "^9.0.5",
"html2canvas": "^1.4.1",
"https-proxy-agent": "^7.0.1",
"js-beautify": "^1.14.9",
"js-tiktoken": "^1.0.7",
"lodash": "^4.17.21",
"nanoid": "^3.3.6",
"node-edge-tts": "^1.2.2",
"openai": "^4.22.0",
"quickjs-emscripten": "^0.23.0",
"reconnecting-websocket": "^4.4.0",
"sound-play": "^1.1.0",
"vectordb": "^0.2.2",
"ws": "^8.14.1"
}
}