-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.15 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
{
"name": "smartshell",
"version": "1.0.0",
"description": "Split-pane terminal with LLM assistant",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"rebuild": "electron-rebuild -f -w node-pty",
"postinstall": "electron-rebuild -f -w node-pty",
"build": "electron-builder --mac",
"dev": "ELECTRON_RUN_AS_NODE= NODE_ENV=development electron . --no-sandbox --disable-gpu --ozone-platform=x11"
},
"build": {
"appId": "com.smartshell.app",
"productName": "SmartShell",
"icon": "assets/icon.png",
"mac": {
"target": "dmg",
"category": "public.app-category.developer-tools",
"icon": "assets/icon.png"
},
"files": [
"src/**/*",
"assets/**/*",
"config.default.yaml",
"config.yaml"
],
"asar": true,
"asarUnpack": [
"node_modules/node-pty/**/*"
]
},
"dependencies": {
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"js-yaml": "^4.1.1",
"node-pty": "^1.0.0"
},
"devDependencies": {
"@electron/rebuild": "^3.6.0",
"electron": "^40.6.1",
"electron-builder": "^26.8.1"
}
}