-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.14 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.14 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
{
"name": "open-agent-sdk-monorepo",
"version": "0.1.0-alpha.1",
"private": true,
"description": "Open source agent SDK compatible with Claude Agent SDK (monorepo root)",
"scripts": {
"build": "cd packages/core && bun run build",
"docs:dev": "cd packages/docs && bun run dev",
"docs:build": "cd packages/docs && bun run build",
"docs:preview": "cd packages/docs && bun run preview",
"web:dev": "cd packages/web && bun run dev",
"web:build": "cd packages/web && bun run build",
"web:start": "cd packages/web && bun run start",
"test": "bun test",
"test:coverage": "bun test --coverage",
"typecheck": "cd packages/core && npx tsc --noEmit",
"prepare": "husky install",
"publish:core": "cd packages/core && npm publish --access public",
"publish:benchmark": "bun scripts/publish-benchmark.ts"
},
"workspaces": [
"packages/*",
"examples/*"
],
"devDependencies": {
"@types/bun": "^1.3.8",
"@types/node": "^20.0.0",
"@types/yaml": "^1.9.7",
"husky": "^8.0.3",
"typescript": "^5.3.0"
},
"engines": {
"bun": ">=1.0.0"
},
"dependencies": {
"yaml": "^2.8.2"
}
}