-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.22 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
32
33
34
35
36
{
"name": "logsesh-monorepo",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r build",
"pretest": "pnpm --filter @logsesh/core build",
"test": "pnpm -r test",
"typecheck": "tsc --build && tsc -p packages/core/tsconfig.test.json && tsc -p packages/cli/tsconfig.test.json",
"lint": "oxlint --type-aware .",
"fmt": "oxfmt .",
"fmt:check": "oxfmt --check .",
"dev": "tsx packages/cli/src/index.ts",
"gen:schema": "node --import tsx/esm scripts/gen-schema.ts",
"gen:schema:check": "node scripts/check-schema-drift.mjs",
"enrich:pricing": "node scripts/enrich-pricing-provenance.mjs",
"check:pricing": "node scripts/check-pricing.mjs",
"test:coverage": "vitest run --coverage",
"verify": "pnpm build && pnpm test && pnpm typecheck && pnpm lint && pnpm fmt:check && pnpm gen:schema:check && pnpm check:pricing"
},
"devDependencies": {
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"oxlint-tsgolint": "^0.22.1",
"tsx": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:",
"zod": "catalog:"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.7.0"
}