-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.14 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.14 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "codepulse",
"version": "1.0.0",
"description": "Production-grade TypeScript project template with 4-layer automated quality pipeline",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "oxlint --type-aware src test",
"lint:css": "stylelint \"src/**/*.css\"",
"lint:fix": "oxlint --type-aware --fix src test",
"lint:css:fix": "stylelint --fix \"src/**/*.css\"",
"format": "oxfmt --check src test",
"format:fix": "oxfmt --write src test",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"qa:check": "pnpm lint && pnpm lint:css",
"qa:test": "pnpm test:coverage",
"qa": "pnpm qa:check && pnpm qa:test",
"qa:full": "pnpm fix && pnpm qa",
"fix": "oxlint --type-aware --fix src test && stylelint --fix \"src/**/*.css\" 2>/dev/null || true",
"health": "node --import tsx scripts/health-check.ts",
"health:fast": "node --import tsx scripts/health-check.ts --fast",
"onboard": "node --import tsx scripts/onboard.ts",
"onboard:ai": "node --import tsx scripts/onboard.ts --ai",
"dead-code": "npx knip --reporter compact",
"postinstall": "node scripts/setup-git-hooks.js"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@10.23.0",
"dependencies": {
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.2.2",
"@vitest/coverage-v8": "^4.0.18",
"knip": "^5.83.1",
"oxfmt": "0.28.0",
"oxlint": "^1.43.0",
"stylelint": "^17.1.1",
"stylelint-config-standard": "^40.0.0",
"stylelint-order": "^7.0.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"vitest": {
"coverage": {
"provider": "v8",
"reporter": ["text", "lcov"],
"thresholds": {
"lines": 70,
"functions": 70,
"branches": 70,
"statements": 70
},
"include": ["src/**/*.ts"],
"exclude": ["src/**/*.test.ts"]
},
"include": ["src/**/*.test.ts"],
"exclude": ["dist/**", "node_modules/**"]
}
}