-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.25 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
{
"name": "koru-autopilot-plugins-workspace",
"version": "0.1.461",
"private": true,
"description": "Monorepo root for all koru autopilot IDE plugins. Each IDE has its own VSIX so a regression in one cannot leak into another. Shared code (protocol, socket, host-click-submit) lives in plugins/koru-autopilot-shared and is copied into per-IDE plugins at prebuild time.",
"workspaces": [
"plugins/koru-autopilot-shared",
"plugins/koru-autopilot-cursor",
"plugins/koru-autopilot-vscode",
"plugins/koru-autopilot-vscodium",
"plugins/koru-autopilot-windsurf",
"plugins/koru-autopilot-antigravity"
],
"scripts": {
"prepare": "./scripts/install-agent-hosts.sh",
"sync-shared": "python3 scripts/sync-plugin-shared.py",
"compile:all": "npm run sync-shared && npm run compile --workspaces --if-present",
"test": "npm run test:all",
"test:all": "npm run sync-shared && npm run test --workspaces --if-present",
"package:all": "npm run sync-shared && npm run package --workspaces --if-present"
},
"wellmanifest": {
"standard": "0.20.33",
"revision": "a8245857259d8d42115108f191c586b76cb1e2bd",
"gate": "project/governance-check.sh"
},
"author": {
"name": "Tom Sapletta",
"email": "tom@sapletta.com"
}
}