-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.94 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-article",
"version": "2.0.0",
"main": "dist-electron/main/index.js",
"description": "Really simple Electron + Vue + Vite boilerplate.",
"author": "草鞋没号 <[email protected]>",
"homepage": "https://elias-cug.github.io/",
"license": "MIT",
"private": true,
"keywords": [
"electron",
"rollup",
"vite",
"vue3",
"vue"
],
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:3344/"
}
},
"scripts": {
"dev": "vite",
"build:render": "cross-env VITE_SERVICE_ENV=dev vite build",
"build": "vue-tsc --noEmit && yarn build:render && electron-builder",
"build:win": "vue-tsc --noEmit && yarn build:render && electron-builder --win --x64",
"build:win32": "vue-tsc --noEmit && yarn build:render && electron-builder --win --ia32",
"build:linux": "vue-tsc --noEmit && yarn build:render && electron-builder --linux --x64",
"preview": "vite preview"
},
"devDependencies": {
"@types/node": "^20.1.2",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"@vitejs/plugin-vue": "^4.1.0",
"axios": "^1.4.0",
"cross-env": "^7.0.3",
"dayjs": "^1.11.7",
"electron": "^23.1.1",
"electron-builder": "^23.6.0",
"eslint": "^8.40.0",
"eslint-plugin-vue": "^9.11.0",
"lodash-es": "^4.17.21",
"naive-ui": "^2.34.3",
"node-sass": "^8.0.0",
"pinia": "^2.1.3",
"prettier": "^2.8.8",
"qs": "^6.11.2",
"sass": "^1.62.1",
"sass-loader": "^13.2.2",
"typescript": "^5.0.2",
"unocss": "^0.51.12",
"vite": "^4.1.4",
"vite-plugin-electron": "^0.11.1",
"vite-plugin-electron-renderer": "^0.13.14",
"vue": "^3.2.47",
"vue-eslint-parser": "^9.2.0",
"vue-router": "^4.1.6",
"vue-tsc": "^1.2.0"
},
"dependencies": {
"@types/qs": "^6.9.8",
"electron-debug": "^3.2.0",
"https-proxy-agent": "^7.0.1",
"nanoid": "^4.0.2",
"openai": "^4.3.1"
}
}