-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 740 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "codevil",
"private": true,
"type": "module",
"engines": {
"node": ">=22.19"
},
"packageManager": "pnpm@10.28.1",
"scripts": {
"build": "pnpm -r --filter '@codevil/*' --if-present build",
"typecheck": "pnpm build && pnpm -r --filter '@codevil/*' --if-present typecheck",
"test": "pnpm -r --filter '@codevil/*' --workspace-concurrency=1 --if-present test",
"verify": "pnpm typecheck && pnpm test",
"deploy": "pnpm --filter @codevil/worker run deploy",
"providers": "pnpm --filter '@codevil/admin-cli...' build && node packages/admin-cli/dist/index.js providers"
},
"pnpm": {
"overrides": {
"kysely": "0.28.17"
},
"onlyBuiltDependencies": ["esbuild", "workerd"]
}
}