-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 4.13 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 4.13 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "agent-ui",
"version": "1.0.0",
"description": "Desktop overlay for local Hermes sessions",
"packageManager": "pnpm@11.1.3",
"productName": "agent-UI",
"main": "out/main/index.js",
"bin": {
"agent-ui": "bin/agent-ui.js"
},
"files": [
"bin",
"out",
"assets",
"README.md"
],
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"dist:mac": "node scripts/assert-mac-release-env.js bootstrap connector && pnpm run build && CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder --config packaging/electron-builder.connector.bootstrap.cjs --mac dmg zip --publish never",
"dist:mac:developer-id": "node scripts/assert-mac-release-env.js developer-id connector && pnpm run build && electron-builder --config packaging/electron-builder.connector.cjs --mac dmg zip --publish never",
"typecheck": "tsc --noEmit",
"verify:hermes-contracts": "node scripts/verify-hermes-contracts.cjs",
"verify:source": "pnpm run verify:hermes-contracts && pnpm run typecheck && pnpm run format:check && pnpm run lint && pnpm run build",
"verify": "pnpm run verify:source",
"release:verify": "RELEASE_VERIFY_SIGNING_MODE=bootstrap RELEASE_VERIFY_APP_MODE=connector node scripts/release-manifest.js",
"release:verify:developer-id": "RELEASE_VERIFY_SIGNING_MODE=developer-id RELEASE_VERIFY_APP_MODE=connector node scripts/release-manifest.js",
"release:github:refresh": "node scripts/github-release-refresh.js",
"verify:installed": "node scripts/installed-app-release-smoke.js",
"verify:live:lmstudio": "node scripts/lmstudio-live-preflight.js && AGENT_UI_INSTALLED_SMOKE_PROVIDER=lmstudio node scripts/installed-app-release-smoke.js",
"verify:concurrency:3": "node scripts/lmstudio-live-preflight.js && AGENT_UI_INSTALLED_SMOKE_PROVIDER=lmstudio AGENT_UI_INSTALLED_SMOKE_PHASES=concurrency AGENT_UI_STAGE_REPORT_MIN_RUNS=3 node scripts/installed-app-release-smoke.js",
"verify:live:release": "node scripts/lmstudio-live-preflight.js && AGENT_UI_INSTALLED_SMOKE_PROVIDER=lmstudio AGENT_UI_INSTALLED_SMOKE_PHASES=first,reopen,concurrency,onboarding AGENT_UI_STAGE_REPORT_MIN_RUNS=3 node scripts/installed-app-release-smoke.js",
"verify:interaction:lmstudio": "node scripts/lmstudio-live-preflight.js && node scripts/interaction-lmstudio-smoke.js",
"start": "electron-vite preview"
},
"keywords": [
"electron",
"desktop-overlay",
"hermes"
],
"author": "",
"license": "ISC",
"engines": {
"node": ">=20.19"
},
"type": "commonjs",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.2",
"electron": "^42.0.0",
"electron-builder": "^26.0.12",
"electron-vite": "^5.0.0",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.6.0",
"prettier": "3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3",
"vite": "^7.3.3"
},
"dependencies": {
"get-windows": "^9.3.0"
},
"overrides": {
"get-windows": {
"@mapbox/node-pre-gyp": "^2.0.3",
"node-gyp": "^12.3.0"
}
},
"build": {
"appId": "ai.agent-ui.desktop",
"artifactName": "agent-UI-${version}-${os}-${arch}.${ext}",
"asar": true,
"files": [
"out/**",
"assets/**",
"package.json"
],
"mac": {
"category": "public.app-category.productivity",
"entitlements": "packaging/mac/entitlements.mac.plist",
"entitlementsInherit": "packaging/mac/entitlements.mac.inherit.plist",
"extendInfo": {
"NSMicrophoneUsageDescription": "agent-UI uses the microphone to capture voice input for prompts."
},
"target": [
"dmg",
"zip"
],
"hardenedRuntime": true,
"gatekeeperAssess": true,
"notarize": true
},
"dmg": {
"sign": false,
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
}
}
}