-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.92 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.92 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
{
"name": "visrodeck-studio",
"version": "0.4.0",
"description": "Visrodeck Studio — Desktop IDE",
"main": "electron/main.js",
"scripts": {
"dev": "concurrently -k -n VITE,ELECTRON -c cyan,magenta \"vite\" \"wait-on tcp:5173 && electron .\"",
"dev:linux": "fuser -k 5173/tcp >/dev/null 2>&1 || true; concurrently -k -n VITE,ELECTRON -c cyan,magenta \"vite\" \"wait-on tcp:5173 && env -u ELECTRON_RUN_AS_NODE electron . --no-sandbox\"",
"dev:web": "vite --open",
"build": "vite build && electron-builder",
"build:web": "vite build",
"build:win": "vite build && electron-builder --win nsis",
"build:win:portable": "vite build && CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder --win portable --config.win.signAndEditExecutable=false",
"build:linux": "vite build && electron-builder --linux AppImage",
"rebuild": "npx @electron/rebuild -f -w node-pty",
"postinstall": "echo skip rebuild"
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"node-pty": "^1.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@electron/rebuild": "^4.0.3",
"@vitejs/plugin-react": "^4.3.3",
"concurrently": "^9.1.0",
"electron": "^33.2.0",
"electron-builder": "^25.1.7",
"vite": "^5.4.10",
"wait-on": "^8.0.1"
},
"build": {
"appId": "com.visrodeck.studio",
"productName": "Visrodeck Studio",
"asar": true,
"npmRebuild": false,
"buildDependenciesFromSource": false,
"asarUnpack": [
"**/node_modules/node-pty/**"
],
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*",
"node_modules/**/*"
],
"mac": {
"category": "public.app-category.developer-tools",
"target": "dmg"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage"
}
}
}