-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.36 KB
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
{
"name": "code-editor",
"version": "1.0.0",
"description": "A VS Code-like code editor built with Electron",
"main": "main.js",
"scripts": {
"start": "concurrently --kill-others \"vite --config vite.config.js\" \"wait-on http://localhost:5173 && electron . --no-sandbox\"",
"build": "vite build --config vite.config.js",
"electron": "electron . --no-sandbox",
"dev": "concurrently --kill-others \"vite --config vite.config.js\" \"wait-on http://localhost:5173 && electron . --no-sandbox\"",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"appId": "com.geekscode.editor",
"productName": "GeeksCode",
"directories": {
"output": "dist_electron"
},
"files": [
"dist/**/*",
"main.js",
"preload.js",
"package.json",
"styles.css",
"!node_modules/node-llama-cpp/bins/**/*",
"!node_modules/node-llama-cpp/llama/**/*"
],
"asarUnpack": [
"node_modules/node-pty/**/*",
"node_modules/pdf-parse/**/*"
],
"asar": true,
"mac": {
"target": "dmg",
"category": "public.app-category.developer-tools",
"icon": "build/icon.icns"
},
"win": {
"target": "nsis",
"icon": "build/icon.ico"
},
"linux": {
"target": "AppImage",
"category": "Development"
},
"extraResources": [
{
"from": "node_modules/node-pty/build/Release",
"to": "node-pty",
"filter": [
"**/*"
]
}
]
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"@vitejs/plugin-react": "^4.2.1",
"@vscode/codicons": "^0.0.44",
"axios": "^1.13.5",
"electron-prompt": "^1.7.0",
"lucide-react": "^0.564.0",
"monaco-editor": "^0.44.0",
"node-llama-cpp": "^3.15.1",
"node-pty": "^1.0.0",
"pdf-parse": "^2.4.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"remark-gfm": "^4.0.1",
"vectra": "^0.12.3",
"vite": "^6.1.0",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0"
},
"devDependencies": {
"@electron/rebuild": "^4.0.3",
"autoprefixer": "^10.4.24",
"concurrently": "^9.2.1",
"electron": "^40.4.1",
"electron-builder": "^26.7.0",
"node-gyp": "^10.0.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.1",
"wait-on": "^8.0.5"
}
}