-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 2.62 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
{
"name": "relay",
"private": true,
"version": "0.0.0",
"description": "BYO-Claude broker — MetaMask, but for AI. A local sidekick brokers your model + MCP tools to any website through window.claude, under per-origin, out-of-band consent.",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "npm run build -w @relay/protocol && npm run build -w @relay/sidekick && npm run build -w @relay/sdk && npm run build -w @relay/extension && npm run build -w @relay/demo-site && npm run build -w @relay/example-apps",
"typecheck": "npm run typecheck --workspaces --if-present",
"sidekick": "npm run start --workspace @relay/sidekick",
"demo": "npm run dev --workspace @relay/demo-site",
"apps": "npm run dev --workspace @relay/example-apps",
"try-apps": "npm run build -w @relay/protocol && npm run build -w @relay/sidekick && node examples/harness/run-apps.mjs",
"try-team": "npm run build -w @relay/protocol && npm run build -w @relay/sidekick && node examples/harness/run-team.mjs",
"try-team-git": "npm run build -w @relay/protocol && npm run build -w @relay/sidekick && node examples/harness/run-team-git.mjs",
"try-team-relay": "npm run build -w @relay/protocol && npm run build -w @relay/sidekick && node examples/harness/run-team-relay.mjs",
"try-cloud": "npm run build -w @relay/protocol && npm run build -w @relay/sidekick && node examples/harness/run-cloud.mjs",
"try-store": "node examples/harness/run-store.mjs",
"try-adgen": "npm run build -w @relay/protocol && npm run build -w @relay/sidekick && node examples/harness/run-adgen.mjs",
"try-imagegen": "npm run build -w @relay/protocol && npm run build -w @relay/sidekick && node examples/harness/run-imagegen.mjs",
"daemon:install": "npm run build -w @relay/sidekick && node packages/sidekick/scripts/install-daemon.mjs",
"daemon:uninstall": "node packages/sidekick/scripts/install-daemon.mjs --uninstall",
"menubar:build": "bash packages/menubar/build.sh",
"menubar": "bash packages/menubar/build.sh && open packages/menubar/Switchboard.app",
"daemon:restart": "npm run build -w @relay/sidekick && launchctl kickstart -k gui/$(id -u)/com.relay.sidekick && echo restarted",
"runner": "node examples/runner/serve.mjs",
"try-team-cloud": "npm run build -w @relay/protocol && npm run build -w @relay/sidekick && node examples/harness/run-team-cloud.mjs",
"try-compat": "npm run build -w @relay/protocol && npm run build -w @relay/sidekick && node examples/harness/run-compat.mjs"
},
"devDependencies": {
"esbuild": "^0.28.1",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=20"
}
}