-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 791 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "agents-in-browser",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "npm run build:shared && npm run build:proxy && npm run build:extension",
"build:shared": "npm run -w @anthropic-ai/agents-in-browser-shared build",
"build:proxy": "npm run -w @anthropic-ai/agents-in-browser-proxy build",
"build:extension": "npm run -w @anthropic-ai/agents-in-browser-extension build",
"dev:proxy": "npm run -w @anthropic-ai/agents-in-browser-proxy dev",
"dev:extension": "npm run -w @anthropic-ai/agents-in-browser-extension dev",
"test": "npm run -w @anthropic-ai/agents-in-browser-extension test:main-world-bridge"
},
"devDependencies": {
"udd-kit": "github:d-wwei/udd-kit"
}
}