-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 1.44 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
{
"name": "catcher-monorepo",
"private": true,
"packageManager": "pnpm@10.15.1",
"scripts": {
"build": "pnpm build:ts",
"build:ts": "pnpm --filter @eric8810/catcher-core --filter @eric8810/catcher-http --filter @eric8810/catcher-ws --filter @eric8810/catcher-web --filter @eric8810/catcher-napi-http --filter @eric8810/catcher-napi-ws build",
"test": "vitest run",
"test:integration": "vitest run",
"test:napi": "pnpm --filter @eric8810/catcher-napi-http build && pnpm --filter @eric8810/catcher-napi-ws build && vitest run --config vitest.napi.config.ts",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:chaos": "vitest run --config vitest.chaos.config.ts",
"test:napi-bench": "pnpm --filter @eric8810/catcher-napi-http build && pnpm --filter @eric8810/catcher-napi-ws build && vitest run --config vitest.napi-bench.config.ts",
"bench:napi": "pnpm --filter @eric8810/catcher-napi-http build && pnpm --filter @eric8810/catcher-napi-ws build && vitest bench --run --config vitest.napi-bench.config.ts",
"test:napi-chaos": "pnpm --filter @eric8810/catcher-napi-http build && pnpm --filter @eric8810/catcher-napi-ws build && vitest run --config vitest.napi-chaos.config.ts",
"test:watch": "vitest",
"bench": "vitest bench --run",
"lint": "pnpm typecheck",
"typecheck": "pnpm -r typecheck"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
}
}