-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 886 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "agentic-bridge",
"version": "0.1.0",
"private": true,
"description": "Agentic Bridge — expose site search as structured tools for AI agents",
"workspaces": [
"bridge",
"worker"
],
"scripts": {
"build": "npm run build:bridge && npm run codegen:bridge && npm run build:worker",
"build:bridge": "npm run build -w bridge",
"build:worker": "npm run build -w worker",
"codegen:bridge": "node scripts/inline-bridge.mjs",
"deploy": "npm run build && npm run deploy -w worker",
"dev": "npm run build:bridge && cp bridge/dist/bridge.js test/bridge.js && concurrently -k -n worker,site -c blue,green \"npm run dev -w worker\" \"python3 -m http.server 8080 --directory test\"",
"dev:worker": "npm run dev -w worker",
"test": "./test/test-api.sh",
"typecheck": "npm run typecheck -w bridge && npm run typecheck -w worker"
}
}