-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.21 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
{
"name": "workforce",
"license": "Apache-2.0",
"private": true,
"version": "0.1.0",
"packageManager": "pnpm@10.17.1",
"pnpm": {
"overrides": {
"shell-quote": ">=1.8.4",
"@opentelemetry/otlp-transformer@<0.217.0>protobufjs": ">=7.5.8 <8.0.0",
"@opentelemetry/otlp-transformer@>=0.217.0>protobufjs": ">=8.2.0",
"@grpc/proto-loader>protobufjs": ">=7.5.8 <8.0.0",
"hono": ">=4.12.21",
"ws": ">=8.20.1",
"qs": ">=6.15.2"
}
},
"devDependencies": {
"@relaycast/a2a": "^6.2.0",
"@types/node": "^22.18.0",
"agent-trajectories": "^0.5.3",
"tsx": "^4.23.1",
"typescript": "^5.9.2"
},
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r build && pnpm -r --parallel --stream run dev",
"dev:cli": "node packages/cli/dist/cli.js",
"typecheck": "pnpm -r typecheck && pnpm run typecheck:examples",
"typecheck:examples": "tsc -p examples/tsconfig.json --noEmit",
"test": "node --test \"scripts/*.test.mjs\" && pnpm -r test && pnpm run test:e2e:agent-card",
"test:e2e:agent-card": "pnpm -r build && tsx scripts/e2e-agent-card.ts",
"lint": "pnpm -r lint",
"check": "pnpm run lint && pnpm run typecheck && pnpm run test"
}
}