-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 748 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 748 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
30
31
{
"name": "@agent-container/workspace",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"test": "turbo test --filter=!@agent-container/e2e",
"clean": "turbo clean",
"typecheck": "turbo typecheck",
"test:e2e": "pnpm --dir apps/e2e test",
"check": "oxlint && oxfmt --write"
},
"dependencies": {
"zod": "catalog:"
},
"devDependencies": {
"@agent-container/config": "workspace:*",
"@cloudflare/workers-types": "catalog:",
"@types/node": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"turbo": "^2.9.6",
"typescript": "catalog:"
},
"packageManager": "pnpm@10.33.0"
}