-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.53 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.53 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
{
"name": "actantdb-workspace",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "ActantDB monorepo — TypeScript packages first, Rust kernel embedded.",
"license": "Apache-2.0",
"workspaces": [
"packages/*",
"examples/test-cleanup",
"examples/langgraph-router",
"examples/cli-only",
"examples/ollama-only",
"bench/box"
],
"scripts": {
"build": "pnpm -r build",
"build:bun": "bun ./scripts/bun-workspace.mjs build",
"dev": "pnpm -r --parallel dev",
"dev:bun": "bun ./scripts/bun-workspace.mjs dev --parallel",
"test": "pnpm -r test",
"test:bun": "bun ./scripts/bun-workspace.mjs test",
"lint": "pnpm -r lint",
"lint:bun": "bun ./scripts/bun-workspace.mjs lint",
"smoke": "node ./scripts/smoke.mjs",
"smoke:bun": "bun ./scripts/smoke.mjs",
"smoke:bun-create": "node ./scripts/smoke-bun-create.mjs",
"smoke:bun-create:bun": "bun ./scripts/smoke-bun-create.mjs",
"typedoc": "typedoc",
"ci": "pnpm -r build && pnpm -r test && pnpm smoke",
"ci:bun": "bun run build:bun && bun run test:bun && bun run lint:bun && bun run smoke:bun && bun run smoke:bun-create:bun"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=20"
},
"dependencies": {
"@actantdb/core": "workspace:*",
"@actantdb/mastra": "workspace:*",
"@actantdb/policy": "workspace:*",
"@actantdb/replay": "workspace:*",
"@actantdb/studio": "workspace:*",
"@actantdb/types": "workspace:*"
},
"devDependencies": {
"typedoc": "^0.26.0"
}
}