-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.04 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.04 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
{
"name": "oxdeai",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"scripts": {
"clean": "pnpm -r exec rm -rf dist",
"build": "pnpm -r build",
"build:core": "pnpm --filter @oxdeai/core build",
"build:protocol": "pnpm --filter @oxdeai/core build && pnpm --filter @oxdeai/sdk build && pnpm --filter @oxdeai/guard build",
"rebuild": "pnpm clean && pnpm build",
"typecheck": "pnpm build:protocol && pnpm -r typecheck",
"test": "pnpm build:core && pnpm -r test",
"validate:adapters": "node scripts/validate-adapters.mjs",
"ci": "pnpm install --frozen-lockfile && pnpm -r build && pnpm test && pnpm validate:adapters",
"oxdeai": "pnpm -C packages/cli start --",
"cli": "pnpm -C packages/cli start --",
"run:bench": "pnpm --filter oxdeai-bench run run"
},
"devDependencies": {
"@types/node": "^22.19.11",
"puppeteer": "^24.40.0",
"typescript": "^5.6.0",
"@oxdeai/core": "workspace:*",
"tsx": "^4.21.0"
},
"type": "module"
}