forked from ai-shifu/ChatALL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.01 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "chatall",
"version": "1.54.83",
"description": "Chat with multiple AI bots and discover the best.",
"author": {
"name": "Sun Zhigang",
"email": "[email protected]",
"url": "http://sunner.cn"
},
"repository": {
"type": "git",
"url": "https://github.com/sunner/ChatALL.git"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"format": "prettier --write --cache src/",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"start": "electron .",
"release": "vue-cli-service electron:build -wml --x64 --arm64",
"prepare": "husky install"
},
"dependencies": {
"@kangc/v-md-editor": "^2.3.16",
"@mdi/font": "^7.2.96",
"@vueuse/rxjs": "^10.4.1",
"async-lock": "^1.4.0",
"axios": "^1.5.1",
"babel-plugin-prismjs": "^2.1.0",
"compare-versions": "^6.1.0",
"core-js": "^3.32.2",
"dexie": "^4.0.1-alpha.25",
"dexie-export-import": "^4.0.7",
"electron-builder": "^24.6.4",
"jszip": "^3.10.1",
"katex": "^0.16.8",
"langchain": "~0.0.156",
"localforage": "^1.10.0",
"material-design-icons": "^3.0.1",
"prismjs": "^1.13.0",
"query-string": "^5.0.1",
"rxjs": "^7.8.1",
"sortablejs": "^1.15.0",
"update-electron-app": "^2.0.1",
"uuid": "^9.0.1",
"vue": "^3.3.4",
"vue-cli-plugin-electron-builder": "^3.0.0-alpha.4",
"vue-i18n": "^9.7.1",
"vue-matomo": "^4.2.0",
"vue3-shortkey": "^4.0.0",
"vuetify": "^3.4.3",
"vuex": "^4.1.0",
"vuex-persist": "^3.1.3",
"websocket-as-promised": "^2.0.1"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/eslint-parser": "^7.22.15",
"@electron/osx-sign": "^1.0.5",
"@vue/cli": "^5.0.8",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"electron": "^26.2.4",
"electron-devtools-installer": "^3.2.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.17.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"md5": "^2.3.0",
"prettier": "^3.0.3",
"prettier-plugin-vue": "^1.1.6",
"sse.js": "^2.0.2"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended",
"plugin:prettier/recommended"
],
"plugins": [
"prettier"
],
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"rules": {}
},
"lint-staged": {
"*.{js,ts,vue,jsx.tsx}": "npm run lint"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
],
"license": "Apache-2.0",
"overrides": {
"vue-cli-plugin-electron-builder": {
"electron-builder": "^24.0.0"
}
}
}