forked from MCheping8108/easy-gpt-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 950 Bytes
/
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
{
"name": "easy-gpt-vue",
"version": "2.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"tauri": "tauri",
"app:dev": "tauri dev",
"app:build": "tauri build"
},
"dependencies": {
"@vue/runtime-dom": "^3.4.3",
"element-plus": "^2.5.3",
"markdown-it": "^14.0.0",
"openai": "^4.31.0",
"vue": "^3.4.15"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0-beta.13",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^20.11.5",
"@vitejs/plugin-vue": "^4.5.2",
"@vue/tsconfig": "^0.5.0",
"npm-run-all2": "^6.1.1",
"sass": "^1.70.0",
"typescript": "~5.3.3",
"unplugin-auto-import": "^0.17.3",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.0.10",
"vue-tsc": "^1.8.25"
}
}