-
Notifications
You must be signed in to change notification settings - Fork 187
/
package.json
80 lines (80 loc) · 2.58 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
{
"name": "chatgpt-desktop",
"private": true,
"version": "1.0.4",
"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",
"update:version": "node ./scripts/update.cjs",
"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",
"@traptitech/markdown-it-katex": "^3.6.0",
"@types/marked": "^4.0.8",
"clipboard": "^2.0.11",
"dayjs": "^1.11.7",
"gpt3-tokenizer": "^1.1.5",
"highlight.js": "^11.7.0",
"html2canvas": "^1.4.1",
"markdown-it": "^13.0.1",
"markdown-it-highlightjs": "^4.0.1",
"nanoid": "^4.0.2",
"pinia": "^2.0.33",
"pinia-plugin-persistedstate": "^3.1.0",
"tauri-plugin-autostart-api": "github: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",
"tauri-plugin-window-state-api": "github:tauri-apps/tauri-plugin-window-state",
"vue": "^3.2.45",
"vue-i18n": "^9.2.2"
},
"devDependencies": {
"@arco-design/web-vue": "^2.44.1",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@intlify/unplugin-vue-i18n": "^0.10.0",
"@release-it/conventional-changelog": "^5.1.1",
"@tauri-apps/cli": "^1.2.2",
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vitejs/plugin-vue": "^4.0.0",
"autoprefixer": "^10.4.14",
"browserslist": "^4.21.5",
"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",
"lightningcss": "^1.19.0",
"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-autoprefixer": "^0.0.5",
"unplugin-auto-import": "^0.15.1",
"unplugin-vue-components": "^0.24.1",
"vite": "^4.0.0",
"vite-plugin-top-level-await": "^1.3.0",
"vue-tsc": "^1.0.11"
}
}