-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.1 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
{
"name": "how-pi-agent-works",
"version": "0.1.0",
"private": true,
"type": "module",
"workspaces": [
"examples/teaching-agent"
],
"scripts": {
"docs:dev": "vitepress dev docs --host 0.0.0.0",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs --host 0.0.0.0",
"demo:01": "tsx examples/demos/01-loop.ts",
"demo:02": "tsx examples/demos/02-tools.ts",
"demo:03": "tsx examples/demos/03-session-tree.ts",
"demo:04": "tsx examples/demos/04-compaction.ts",
"demo:05": "tsx examples/demos/05-openai-compatible.ts",
"teaching-agent:dev": "npm --workspace @how-pi-agent-works/teaching-agent run dev",
"teaching-agent:build": "npm --workspace @how-pi-agent-works/teaching-agent run build",
"teaching-agent:typecheck": "npm --workspace @how-pi-agent-works/teaching-agent run typecheck",
"teaching-agent:test": "npm --workspace @how-pi-agent-works/teaching-agent run test"
},
"devDependencies": {
"@types/node": "^22.15.21",
"mermaid": "^11.6.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitepress": "^1.6.3"
}
}