-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 2.75 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
45
46
47
48
49
50
51
52
53
54
{
"name": "@agentv/workspace",
"version": "0.0.0",
"private": true,
"description": "AgentV monorepo workspace",
"packageManager": "bun@1.3.3",
"workspaces": ["apps/*", "packages/*"],
"scripts": {
"build": "bun --filter @agentv/core build && bun --filter @agentv/sdk build && bun --filter @agentv/dashboard build && bun --filter agentv build",
"verify": "bun run build && bun run typecheck && bun run lint && bun run test",
"typecheck": "bun --filter @agentv/core build && bun --filter @agentv/sdk build && bun --filter @agentv/core typecheck && bun --filter @agentv/sdk typecheck && bun --filter agentv typecheck",
"typecheck:workspace": "tsc -b tsconfig.build.json",
"typecheck:watch": "bun --filter @agentv/core typecheck -- --watch & bun --filter agentv typecheck -- --watch",
"lint": "biome check .",
"format": "biome format --write .",
"fix": "biome check --write .",
"test": "bun --filter @agentv/core build && bun --filter @agentv/sdk build && bun --filter agentv build && bun --filter @agentv/core test && bun --filter @agentv/sdk test && bun --filter agentv test && bun --filter @agentv/dashboard test",
"test:watch": "bun --filter @agentv/core test:watch & bun --filter agentv test:watch",
"agentv": "bun apps/cli/src/cli.ts",
"agentv:buildrun": "bun run build && bun apps/cli/dist/cli.js",
"beads:check": "bun scripts/check-beads-context.ts",
"debug:pi-sdk-tools": "bun scripts/debug-pi-sdk-tools.ts",
"generate:eval-schema": "bun packages/core/scripts/generate-eval-schema.ts",
"validate:eval-schema": "bun scripts/check-eval-schema.ts",
"validate:promptfoo-export": "bun test scripts/export-promptfoo-config.test.ts",
"validate:examples": "EVAL_CRITERIA=placeholder CUSTOM_SYSTEM_PROMPT=placeholder bun scripts/validate-example-evals.ts",
"eval:baseline-check": "bun scripts/check-eval-baselines.ts",
"release": "bun scripts/release.ts",
"release:next": "bun scripts/release.ts next",
"examples:install": "bun scripts/install-examples.ts",
"publish": "bun run build && bun scripts/publish.ts",
"publish:next": "bun run build && bun scripts/publish.ts next",
"contract-eval": "bun run build && bun scripts/run-contract-eval.ts"
},
"devDependencies": {
"@agentv/core": "workspace:*",
"@agentv/sdk": "workspace:*",
"@biomejs/biome": "^1.9.4",
"@types/bun": "latest",
"@types/node": "24.1.0",
"async-mutex": "^0.5.0",
"p-limit": "^6.1.0",
"tsup": "8.3.5",
"typescript": "5.8.3",
"yaml": "^2.8.3"
},
"optionalDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.89",
"@earendil-works/pi-ai": "^0.74.0",
"@earendil-works/pi-coding-agent": "^0.74.0",
"@github/copilot-sdk": "^1.0.3",
"@openai/codex-sdk": "^0.136.0"
}
}