forked from Synaptrix/ChatGPT-Desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.19 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
{
"name": "ChatGPT-Desktop",
"private": true,
"version": "0.0.5",
"type": "module",
"scripts": {
"dev": "npm run build:icon && vite",
"build": "npm run build:icon && vite build",
"build:icon": "tauri icon ./src-tauri/assets/icon.png",
"preview": "vite preview",
"tauri": "tauri",
"lint": "eslint . --ext .vue,.ts --fix",
"prepare": "husky install",
"release": "release-it"
},
"lint-staged": {
"*.{vue,ts}": [
"npm run lint"
]
},
"dependencies": {
"@microsoft/fetch-event-source": "^2.0.1",
"@multiavatar/multiavatar": "^1.0.7",
"@tauri-apps/api": "^1.2.0",
"@types/marked": "^4.0.8",
"clipboard": "^2.0.11",
"dayjs": "^1.11.7",
"highlight.js": "^11.7.0",
"html-to-image": "^1.11.11",
"markdown-it": "^13.0.1",
"markdown-it-highlightjs": "^4.0.1",
"pinia": "^2.0.33",
"pinia-plugin-persistedstate": "^3.1.0",
"tauri-plugin-autostart-api": "https://github.com/tauri-apps/tauri-plugin-autostart",
"tauri-plugin-sql-api": "https://github.com/tauri-apps/tauri-plugin-sql",
"tauri-plugin-store-api": "https://github.com/tauri-apps/tauri-plugin-store",
"vue": "^3.2.45"
},
"devDependencies": {
"@arco-design/web-vue": "^2.44.1",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@kidonng/daisyui": "^2.51.3",
"@release-it/conventional-changelog": "^5.1.1",
"@tauri-apps/cli": "^1.2.2",
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.7.10",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vitejs/plugin-vue": "^4.0.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.4",
"release-it": "^15.9.0",
"rollup-plugin-visualizer": "^5.9.0",
"sass": "^1.58.3",
"typescript": "^4.6.4",
"unocss": "^0.50.4",
"unocss-preset-daisy": "^2.0.0",
"unplugin-auto-import": "^0.15.1",
"unplugin-vue-components": "^0.24.1",
"vite": "^4.0.0",
"vue-tsc": "^1.0.11"
}
}