-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
101 lines (101 loc) · 2.95 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
{
"name": "mycodegpt-frontend",
"private": true,
"version": "0.0.0",
"main": "main.js",
"description": "MyCodeGPT Electron application",
"author": "Your Name",
"scripts": {
"electron:dev": "concurrently \"vite dev\" \"cross-env NODE_ENV=development electron .\"",
"electron:build-win": "concurrently \"cross-env NODE_ENV=production vite build\" \"wait-on dist && electron-builder build\"",
"electron:build-mac": "concurrently \"cross-env NODE_ENV=production vite build\" \"wait-on dist && electron-builder build --mac\""
},
"dependencies": {
"@ant-design/icons-vue": "^7.0.1",
"@codemirror/basic-setup": "^0.20.0",
"@codemirror/commands": "^6.7.0",
"@codemirror/lang-angular": "^0.1.3",
"@codemirror/lang-cpp": "^6.0.2",
"@codemirror/lang-css": "^6.3.0",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-java": "^6.0.1",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-less": "^6.0.2",
"@codemirror/lang-liquid": "^6.2.1",
"@codemirror/lang-markdown": "^6.3.0",
"@codemirror/lang-php": "^6.0.1",
"@codemirror/lang-python": "^6.1.6",
"@codemirror/lang-rust": "^6.0.1",
"@codemirror/lang-sass": "^6.0.2",
"@codemirror/lang-sql": "^6.8.0",
"@codemirror/lang-vue": "^0.1.3",
"@codemirror/lang-wast": "^6.0.2",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/lang-yaml": "^6.1.1",
"@codemirror/language": "^6.10.3",
"@codemirror/language-data": "^6.5.1",
"@codemirror/state": "^6.4.1",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.34.1",
"@ddietr/codemirror-themes": "^1.4.4",
"ant-design-vue": "^4.2.3",
"chardet": "^2.0.0",
"chokidar": "^4.0.1",
"codemirror": "^6.0.1",
"diff": "^7.0.0",
"echarts": "^5.5.1",
"highlight.js": "^11.9.0",
"iconv-lite": "^0.6.3",
"lodash": "^4.17.21",
"markdown-it": "^14.1.0",
"mitt": "^3.0.1",
"moment": "^2.30.1",
"pinia": "^2.1.7",
"pinia-plugin-persist": "^1.0.0",
"sass": "^1.75.0",
"shiki": "^1.17.5",
"splitpanes": "^3.1.5",
"vue": "^3.4.21",
"vue-codemirror": "^6.1.1",
"vue-router": "^4.3.2",
"vue-web-terminal": "^3.3.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.4",
"concurrently": "^9.0.1",
"cross-env": "^7.0.3",
"electron": "latest",
"electron-builder": "latest",
"fast-glob": "^3.3.2",
"terser": "^5.31.3",
"vite": "^5.2.0",
"vite-plugin-svg-icons": "^2.0.1",
"wait-on": "^8.0.1"
},
"build": {
"appId": "com.mycodegpt.app",
"productName": "MyCodeGPT",
"directories": {
"output": "build"
},
"files": [
"dist/**/*",
"main.js"
],
"extraResources": {
"from": "static/",
"to": "static/"
},
"win": {
"target": "nsis"
},
"mac": {
"target": "dmg"
},
"linux": {
"target": "AppImage"
}
}
}