-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 854 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 854 Bytes
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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces",
"clean": "rm -rf packages/*/dist",
"docs": "npx typedoc",
"test": "npm run build && npx tsx test/sdk.ts && npx tsx test/agents.ts",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"examples:deep-research": "npx tsx examples/deep-research/main.ts",
"examples:react": "npx tsx examples/react-agent/main.ts",
"examples:reflect": "npx tsx examples/reflection/main.ts",
"examples:supervise": "npx tsx examples/supervisor/main.ts"
},
"devDependencies": {
"@lloyal-labs/lloyal.node": "^2.0.5",
"@types/node": "^25.3.0",
"tsx": "^4.21.0",
"typedoc": "^0.28.0",
"typedoc-rhineai-theme": "^1.0.0",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
},
"version": "1.1.0"
}