-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
68 lines (68 loc) · 1.96 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
{
"name": "chat-gpt-box",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview",
"tauri": "tauri dev",
"build-tauri": "tauri build",
"cap-sync": "vite build && cap sync",
"lint": "eslint --ext .js,.vue src",
"lint-fix": "eslint --fix --ext .js,.vue src",
"tsc": "vue-tsc --noEmit"
},
"dependencies": {
"@ant-design/icons-vue": "^6.1.0",
"@google/generative-ai": "^0.1.3",
"@tauri-apps/api": "^1.6.0",
"@vueuse/core": "^10.8.0",
"autoprefixer": "^10.4.17",
"axios": "^1.6.7",
"element-plus": "^2.5.6",
"github-markdown-css": "^5.5.1",
"highlight.js": "^11.9.0",
"lodash": "^4.17.21",
"markdown-it": "^14.0.0",
"markdown-it-katex": "^2.0.3",
"markdown-it-latex": "^0.2.0",
"markdown-it-task-lists": "^2.1.1",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"tiktoken": "^1.0.15",
"uuid": "^9.0.1",
"vue": "^3.4.19",
"vue-i18n": "^9.9.1",
"vue-router": "^4.3.0",
"vue3-avataaars": "^1.0.14",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@tauri-apps/cli": "^1.6.1",
"@types/highlightjs": "^9.12.6",
"@types/lodash": "^4.14.202",
"@types/markdown-it": "^13.0.7",
"@types/node": "^20.11.20",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-vue": "^4.6.2",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/language-server": "^1.8.27",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.22.0",
"less": "^4.2.0",
"typescript": "^5.3.3",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"vite": "^4.5.3",
"vite-plugin-top-level-await": "^1.4.1",
"vite-plugin-wasm": "^3.3.0",
"vue-eslint-parser": "^9.4.2",
"vue-tsc": "^1.8.27"
}
}