-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.91 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.91 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
{
"name": "agentbridge",
"version": "0.4.0",
"private": true,
"type": "module",
"description": "Workspace root for AgentBridge — an AI-native action layer for web apps.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/marmar9615-cloud/agentbridge-protocol.git"
},
"homepage": "https://github.com/marmar9615-cloud/agentbridge-protocol",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "concurrently -n demo,studio -c blue,magenta \"npm run dev:demo\" \"npm run dev:studio\"",
"dev:demo": "npm run dev -w apps/demo-app",
"dev:studio": "npm run dev -w apps/studio",
"dev:mcp": "npm run dev -w apps/mcp-server",
"dev:cli": "tsx packages/cli/src/bin.ts",
"cli": "tsx packages/cli/src/bin.ts",
"build": "npm run build -w packages/core -w packages/sdk -w packages/scanner -w packages/openapi -w packages/cli -w apps/mcp-server",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "npx tsc -p packages/core/tsconfig.json --noEmit && npx tsc -p packages/sdk/tsconfig.json --noEmit && npx tsc -p packages/scanner/tsconfig.json --noEmit && npx tsc -p packages/openapi/tsconfig.json --noEmit && npx tsc -p packages/cli/tsconfig.json --noEmit && npx tsc -p apps/mcp-server/tsconfig.json --noEmit",
"typecheck:clean": "node scripts/clean-dist.mjs && npm run typecheck",
"clean:dist": "node scripts/clean-dist.mjs",
"pack:dry-run": "node scripts/pack-check.mjs",
"validate:mcp-config-examples": "node scripts/validate-mcp-config-examples.mjs",
"validate:examples": "node scripts/validate-examples.mjs",
"smoke:external": "node scripts/external-adopter-smoke.mjs",
"smoke:http": "node scripts/http-mcp-smoke.mjs"
},
"devDependencies": {
"@types/node": "^22.10.0",
"concurrently": "^9.1.0",
"tsup": "^8.3.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
}
}