forked from duyet/agentstate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 772 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "agentstate",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "git config core.hooksPath .githooks",
"dev": "cd packages/api && bunx wrangler dev",
"dev:dashboard": "cd packages/dashboard && bun run dev",
"build": "cd packages/api && bunx tsc --noEmit && cd ../../packages/dashboard && bun run build",
"test": "cd packages/api && bunx vitest run",
"fmt": "bunx biome check --write packages/*/src/",
"lint": "bunx biome check packages/*/src/",
"typecheck": "bunx tsc --noEmit -p packages/api/tsconfig.json",
"db:generate": "cd packages/api && bunx drizzle-kit generate",
"deploy": "cd packages/api && bunx wrangler deploy"
},
"devDependencies": {
"typescript": "^5.7.0"
}
}