-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.96 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.96 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "hankweave",
"version": "0.6.2",
"description": "Orchestration runtime for antibrittle agentic workflows",
"author": {
"name": "Southbridge AI",
"url": "https://southbridge.ai"
},
"keywords": [
"hankweave"
],
"homepage": "https://github.com/SouthBridgeAI/hankweave-runtime",
"type": "module",
"publishConfig": {
"access": "public"
},
"bin": {
"hankweave": "dist/index.js"
},
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./schemas": {
"types": "./dist/exports/schemas.d.ts",
"import": "./dist/exports/schemas.js",
"default": "./dist/exports/schemas.js"
},
"./types": {
"types": "./dist/exports/types.d.ts",
"import": "./dist/exports/types.js",
"default": "./dist/exports/types.js"
}
},
"files": [
"dist",
"schemas"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"generate-schemas": "bun scripts/generate-schemas.ts",
"build": "bun run generate-schemas && bun scripts/build.ts",
"prepublishOnly": "bun run build",
"typecheck": "bun run tsc --noEmit && echo 'Type check passed ✅'",
"tc": "bun typecheck",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"fetch-models": "bun scripts/fetch-models-dev.ts",
"server": "bun server/index.ts",
"server:headless": "bun server/index.ts --headless",
"test": "bun tests/utils/check-test-ready.ts && bun test tests/unit tests/integration tests/e2e/happy-path-e2e.test.ts tests/e2e/rollback-improved-1-e2e.test.ts && bun tests/unit/cleanup-after-tests.ts",
"test:long": "LONG_TESTS=true bun test tests/long-running",
"test:unit": "bun tests/unit/cleanup-after-tests.ts && bun test tests/unit && bun tests/unit/cleanup-after-tests.ts",
"test:integration": "bun tests/integration",
"test:e2e:check": "bun tests/utils/check-test-ready.ts",
"test:e2e:init": "bun scripts/e2e/init.ts normal",
"test:e2e:init:npx": "bun scripts/e2e/init.ts npx",
"test:e2e:init:bunx": "bun scripts/e2e/init.ts bunx",
"test:e2e:init:binary": "bun scripts/e2e/init.ts binary",
"test:e2e:sanity": "bun tests/utils/sanity-check.ts",
"test:e2e:cleanup": "./tests/utils/cleanup-test.sh",
"pre-test": "bun run test:e2e:check && bun run pre-test:cleanup",
"pre-test:cleanup": "rm -rf tests/test-area && mkdir -p tests/test-area && rm -rf tests/test-results && mkdir -p tests/test-results && echo '✅ Test area and results cleaned'",
"cleanup": "echo 'Error: --cleanup requires --config' && exit 1",
"cleanup:example": "bun server/index.ts --cleanup --config=hank.json",
"cleanup:force": "bun server/index.ts --cleanup --config=hank.json -y",
"test:shims": "bun scripts/test-shims.ts",
"test:cross-runtime:bun": "bun scripts/run-cross-runtime-tests.ts bun",
"test:cross-runtime:node": "bun scripts/run-cross-runtime-tests.ts node",
"test:cross-runtime:deno": "bun scripts/run-cross-runtime-tests.ts deno",
"test:cross-runtime:all": "bun run test:cross-runtime:bun && bun run test:cross-runtime:node && bun run test:cross-runtime:deno"
},
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@types/bun": "latest",
"@types/lodash.merge": "^4.6.9",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"tsx": "^4.19.0",
"verdaccio": "^6.2.4",
"zod-to-json-schema": "^3.25.1"
},
"peerDependencies": {
"typescript": "^5.9.2"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.5",
"@ai-sdk/google": "^2.0.7",
"@ai-sdk/groq": "^2.0.11",
"@ai-sdk/openai": "^2.0.18",
"@anthropic-ai/claude-agent-sdk": "^0.1.70",
"@clack/prompts": "^1.0.0",
"@openai/codex-sdk": "0.104.0",
"ai": "^5.0.15",
"crossws": "^0.4.1",
"eta": "^3.5.0",
"fast-glob": "^3.3.3",
"ignore": "^7.0.5",
"lodash.merge": "^4.6.2",
"minimatch": "^10.0.1",
"posthog-node": "^5.24.10",
"simple-git": "^3.28.0",
"srvx": "^0.10.0",
"zod": "^3.25.74"
}
}