-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.33 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
{
"name": "agentic-cookbook",
"private": true,
"packageManager": "pnpm@10.5.2",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"test:temporal": "turbo run test --filter=@agentic-cookbook/temporal-harness",
"test:durable": "turbo run test --filter=@agentic-cookbook/aws-durable-harness",
"test:local": "pnpm run test:durable && pnpm run test:temporal",
"test:ui": "pnpm --filter @agentic-cookbook/tutorials-web test:ui",
"demo": "pnpm --filter @agentic-cookbook/tutorials-web dev --host 0.0.0.0",
"demo:record": "pnpm --filter @agentic-cookbook/tutorials-web demo:record",
"videos:record": "pnpm --filter @agentic-cookbook/tutorials-web videos:record",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"check": "turbo run lint typecheck test",
"clean": "turbo run clean",
"verify:devcontainer": "sh scripts/verify-devcontainer.sh",
"ci:docker:build": "docker build -f Dockerfile.ci -t agentic-cookbook-ci .",
"ci:docker:check": "docker run --rm agentic-cookbook-ci",
"ci:docker": "pnpm run ci:docker:build && pnpm run ci:docker:check"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.13.10",
"turbo": "^2.4.4",
"typescript": "^5.8.2",
"vitest": "^2.1.8"
}
}