-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 857 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 857 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
29
{
"name": "oya-workspace",
"private": true,
"type": "module",
"workspaces": ["packages/*", "apps/*", "benchmarks"],
"engines": {
"node": ">=18",
"bun": ">=1.1"
},
"scripts": {
"build": "bun run --filter oyadotai build && bun run --filter 'oyadotai-server' build",
"test": "bun run --filter oyadotai test",
"typecheck": "bun run --filter '*' typecheck",
"dev": "bun run --filter '@oya/playground' dev",
"bench": "cd benchmarks && bun compare.ts",
"example": "bun run --filter oyadotai example",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs"
},
"trustedDependencies": ["esbuild"],
"devDependencies": {
"@types/bun": "^1.3.0",
"@types/node": "^22.10.0",
"oyadotai": "workspace:*",
"typescript": "^5.7.0",
"vitepress": "^1.5.0",
"zod": "^3.23.8"
}
}