-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.48 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.48 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
{
"private": true,
"workspaces": ["packages/*", "apps/*", "apps/examples/*"],
"scripts": {
"build": "bun run --filter '@pivanov/agents-wire' build",
"test": "bun run --filter '@pivanov/agents-wire' test",
"typecheck": "bun run --filter '@pivanov/agents-wire' typecheck",
"knip": "bun run --filter '@pivanov/agents-wire' knip",
"lint": "biome check . && bun run typecheck && bun run knip",
"lint:fix": "biome check --write .",
"check": "bun run lint && bun run test",
"docs": "bun --filter agents-wire-docs dev",
"docs:build": "bun --filter agents-wire-docs build",
"smoke": "bun packages/agents-wire/tests/smoke.ts",
"smoke:orchestrate": "bun packages/agents-wire/tests/smoke-orchestrate.ts",
"playground": "printf '\\033[1A\\033[2K\\r' ; bun apps/playground/index.tsx",
"changeset": "changeset",
"version": "changeset version",
"release": "bun run build && changeset publish",
"publish": "cd packages/agents-wire && npm publish --access public",
"example:code-review": "bun apps/examples/code-review-bot/index.ts",
"example:research": "bun apps/examples/research-agent/index.ts",
"example:classifier": "bun apps/examples/multi-agent-classifier/index.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.31.0",
"@types/node": "^22.10.5"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@pivanov/claude-wire": "^0.2.0"
}
}