-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
189 lines (188 loc) · 5.97 KB
/
Copy pathpackage.json
File metadata and controls
189 lines (188 loc) · 5.97 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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
{
"name": "vespi",
"version": "1.0.20",
"description": "VesPi — Windows desktop GUI for Oh My Pi (OMP)",
"main": "out/main/index.js",
"desktopName": "vespi.desktop",
"author": "VesPi",
"license": "Apache-2.0",
"homepage": "https://github.com/esseener/VesPi",
"repository": {
"type": "git",
"url": "https://github.com/esseener/VesPi"
},
"keywords": [
"vespi",
"pi",
"pi-desktop",
"oh-my-pi",
"omp",
"oh my pi",
"oh-my-pi desktop",
"pi coding agent",
"coding-agent",
"ai coding agent",
"electron",
"desktop",
"windows"
],
"bin": {
"vespi": "./bin/pi-desktop.js"
},
"scripts": {
"dev": "electron-vite build && electron-vite preview -- --no-sandbox",
"dev:hot": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"test": "tsx --test \"src/**/*.test.ts\" \"resources/**/*.test.ts\"",
"test:coverage": "tsx --test --experimental-test-coverage \"src/**/*.test.ts\" \"resources/**/*.test.ts\"",
"typecheck": "tsc -b --noEmit",
"lint": "eslint src bin scripts resources && node scripts/check-semantic-colors.mjs",
"check:release": "node scripts/check-release-consistency.mjs",
"check": "npm run typecheck && npm run lint && npm test && npm run check:release && npm run build",
"package": "electron-vite build && electron-builder",
"prepare:runtime:release": "node scripts/update-omp.mjs --strict",
"package:linux": "electron-vite build && electron-builder --linux",
"package:linux:appimage": "electron-vite build && electron-builder --linux AppImage",
"package:linux:all": "electron-vite build && electron-builder --linux",
"package:mac": "electron-vite build && electron-builder --mac",
"package:mac:dmg": "electron-vite build && electron-builder --mac dmg",
"package:mac:zip": "electron-vite build && electron-builder --mac zip",
"package:win": "npm run prepare:runtime:release && electron-vite build && electron-builder --win nsis",
"package:win:nsis": "npm run prepare:runtime:release && electron-vite build && electron-builder --win nsis",
"package:all": "npm run prepare:runtime:release && electron-vite build && electron-builder --linux --mac --win",
"postinstall": "node scripts/postinstall.js"
},
"dependencies": {
"@codemirror/lang-cpp": "^6.0.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-java": "^6.0.2",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-php": "^6.0.2",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/lang-yaml": "^6.1.3",
"@codemirror/language": "^6.12.3",
"@codemirror/legacy-modes": "^6.5.3",
"@fontsource-variable/inter": "^5.2.8",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@lezer/highlight": "^1.2.3",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"chokidar": "^5.0.0",
"clsx": "^2.1.1",
"codemirror": "^6.0.2",
"lucide-react": "^0.511.0",
"node-pty": "^1.1.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"style-mod": "^4.1.3",
"zustand": "^5.0.5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.1.7",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.5",
"@vitejs/plugin-react": "^4.5.2",
"electron": "^43.0.0",
"electron-builder": "^26.0.12",
"electron-vite": "^3.1.0",
"eslint": "^10.6.0",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.7.0",
"tailwindcss": "^4.1.7",
"tsx": "^4.23.8",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.0",
"vite": "^6.3.5"
},
"build": {
"appId": "com.vespi.desktop",
"productName": "VesPi",
"copyright": "Copyright 2026 VesPi. Based on Pi Desktop (Apache-2.0).",
"npmRebuild": false,
"nodeGypRebuild": false,
"buildDependenciesFromSource": false,
"publish": null,
"asarUnpack": [
"**/node_modules/node-pty/**"
],
"files": [
"out/**/*",
"bin/**/*"
],
"extraResources": [
{
"from": "resources/",
"to": "resources/",
"filter": [
"**/*",
"!**/*.test.ts"
]
},
{
"from": "../runtime/omp",
"to": "runtime/omp",
"filter": [
"omp.exe",
"LICENSE"
]
}
],
"directories": {
"output": "release"
},
"linux": {
"target": [
"AppImage"
],
"syncDesktopName": true,
"category": "Development",
"icon": "resources/icons",
"synopsis": "Desktop GUI for private OMP",
"description": "VesPi is an Electron desktop client for a private Oh My Pi runtime.",
"maintainer": "VesPi",
"artifactName": "VesPi-${version}-${os}-${arch}.${ext}"
},
"mac": {
"target": [
"dmg",
"zip"
],
"category": "public.app-category.developer-tools",
"icon": "resources/icons/icon.icns",
"darkModeSupport": true,
"hardenedRuntime": true,
"gatekeeperAssess": false,
"artifactName": "VesPi-${version}-${os}-${arch}.${ext}"
},
"win": {
"target": [
"nsis"
],
"icon": "resources/icons/icon.ico",
"artifactName": "VesPi-${version}-${os}-${arch}.${ext}"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "VesPi",
"installerIcon": "resources/icons/icon.ico",
"uninstallerIcon": "resources/icons/icon.ico",
"artifactName": "VesPi-Setup-${version}-${os}-${arch}.${ext}"
}
}
}