-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.33 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
{
"name": "ade-desktop",
"version": "0.1.7",
"private": true,
"author": "Rockazim",
"description": "Agentic Development Environment desktop shell",
"main": "electron/main.js",
"scripts": {
"postinstall": "node ./scripts/install-electron-pty.js",
"dev": "electron .",
"start": "electron .",
"dist:win": "electron-builder --win nsis --publish never",
"dist:mac": "electron-builder --mac dmg --publish never"
},
"build": {
"appId": "com.agenticdevenv.desktop",
"productName": "ADE",
"files": [
"index.html",
"renderer.js",
"electron/**/*",
"backend/**/*",
"docs/**/*",
"README.MD",
"package.json"
],
"directories": {
"output": "dist"
},
"nsis": {
"allowToChangeInstallationDirectory": true,
"oneClick": false,
"perMachine": false
},
"win": {
"target": [
"nsis"
]
},
"mac": {
"target": [
"dmg"
],
"category": "public.app-category.developer-tools"
}
},
"devDependencies": {
"electron": "29.4.6",
"electron-builder": "^26.8.1"
},
"dependencies": {
"@homebridge/node-pty-prebuilt-multiarch": "^0.13.1",
"@huggingface/transformers": "^4.0.1",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/xterm": "^6.0.0"
}
}