-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.14 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.14 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
{
"name": "personal-agent",
"version": "1.0.0",
"description": "Personal agent that runs as a background service with remote PTY access via Tailscale",
"main": "dist/main/index.js",
"scripts": {
"build": "tsc && cp src/renderer/index.html dist/renderer/",
"watch": "tsc -w",
"start": "npm run build && electron .",
"dev": "concurrently \"npm run watch\" \"wait-on dist/main/index.js && electron .\"",
"pack": "npm run build && electron-builder --dir",
"dist": "npm run build && electron-builder",
"dist:mac": "npm run build && electron-builder --mac",
"postinstall": "electron-builder install-app-deps"
},
"keywords": [
"electron",
"agent",
"terminal",
"pty",
"tailscale"
],
"author": "",
"license": "MIT",
"dependencies": {
"keytar": "^7.9.0",
"node-forge": "^1.3.3",
"node-pty": "^1.1.0",
"qrcode": "^1.5.4",
"uuid": "^13.0.0",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@types/node-forge": "^1.3.14",
"@types/qrcode": "^1.5.6",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"concurrently": "^9.2.1",
"electron": "^39.2.7",
"electron-builder": "^26.4.0",
"typescript": "^5.9.3",
"wait-on": "^9.0.3"
},
"build": {
"appId": "com.personal-agent.app",
"productName": "Personal Agent",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"assets/**/*",
"package.json"
],
"mac": {
"category": "public.app-category.developer-tools",
"target": [
"dmg",
"zip"
],
"icon": "assets/icon.icns",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Development"
}
}
}