-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.81 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
{
"name": "shinshell",
"version": "0.1.6",
"description": "Always-elevated Windows desktop shell unifying a dev pipeline into one tabbed workspace: PowerShell terminals, embedded Claude chat/Code, Monaco editor, one-keystroke deploys with SSH health + log-tail, a ports panel, and a fuzzy command palette. Zero-UAC elevation via a Scheduled Task.",
"main": "./out/main/index.js",
"author": "ShinTech Electronics",
"license": "UNLICENSED",
"private": true,
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"build:remote": "npm --prefix remote ci && npm --prefix remote run build",
"preview": "electron-vite preview",
"postinstall": "electron-builder install-app-deps",
"pack": "npm run build:remote && electron-vite build && electron-builder --dir",
"release": "npm run build:remote && electron-vite build && electron-builder --publish never",
"release:publish": "npm run build:remote && electron-vite build && electron-builder --publish always"
},
"dependencies": {
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-webgl": "^0.18.0",
"@xterm/xterm": "^5.5.0",
"chokidar": "^3.6.0",
"electron-updater": "^6.8.9",
"express": "^5.2.1",
"monaco-editor": "^0.55.1",
"node-pty": "^1.0.0",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"web-push": "^3.6.7",
"ws": "^8.21.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^22.10.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/web-push": "^3.6.4",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^4.3.4",
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"electron-vite": "^2.3.0",
"typescript": "^5.7.2",
"vite": "^5.4.11"
},
"build": {
"appId": "com.shintech.shinshell",
"productName": "ShinShell",
"copyright": "ShinTech Electronics",
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"requestedExecutionLevel": "asInvoker",
"icon": "resources/icon.ico"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true,
"shortcutName": "ShinShell",
"createDesktopShortcut": false,
"createStartMenuShortcut": false,
"include": "build/installer.nsh",
"artifactName": "ShinShell-Setup-${version}.${ext}"
},
"publish": {
"provider": "github",
"owner": "ShinobiFPV",
"repo": "ShinShell"
},
"files": [
"out/**/*"
],
"extraResources": [
{
"from": "resources/default-projects",
"to": "default-projects"
},
{
"from": "remote/dist",
"to": "remote"
}
]
}
}