-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.03 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": "claude-code-metrics",
"version": "0.1.0",
"private": true,
"description": "Monorepo de agentic-code-metrics — dashboard de métriques pour sessions LLM.",
"license": "MIT",
"type": "module",
"scripts": {
"backfill": "tsx packages/cli/src/cli.ts backfill",
"render": "tsx packages/cli/src/cli.ts render",
"metrics": "tsx packages/cli/src/cli.ts render",
"setup": "tsx packages/cli/src/cli.ts setup",
"test": "vitest",
"coverage": "vitest run --coverage",
"mutation": "stryker run; status=$?; rm -rf .stryker-tmp; exit $status",
"typecheck": "pnpm -r typecheck",
"build": "pnpm --filter agentic-code-metrics build",
"e2e": "bash scripts/e2e.sh",
"verify-package": "bash scripts/verify-package.sh"
},
"devDependencies": {
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@types/node": "^24.13.2",
"@types/sql.js": "^1.4.11",
"@vitest/coverage-v8": "4.1.9",
"tsx": "^4.22.0",
"typescript": "^5.9.0",
"vitest": "^4.1.9"
}
}