-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 5.78 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 5.78 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "code-reviewer",
"version": "1.1.2",
"private": true,
"workspaces": [
"apps/*"
],
"scripts": {
"bench:public": "node scripts/run-public-benchmark.mjs",
"bench:catch-rate": "node scripts/run-catch-rate-benchmark.mjs",
"bench:graph-context": "node scripts/run-structural-context-evaluation.mjs",
"bench:curation": "node scripts/report-benchmark-curation.mjs",
"bench:1brc": "node --test benchmarks/runtime-challenges/temperature-aggregation/temperature-aggregation.test.mjs",
"bench:1brc:campaign": "node benchmarks/runtime-challenges/temperature-aggregation/campaign.mjs",
"bench:readiness": "node scripts/report-benchmark-curation.mjs benchmarks/agent-prs/public-copilot-corpus.json --require-publishable",
"bench:new-case": "node scripts/create-benchmark-case.mjs",
"bench:curate-public": "node scripts/curate-public-agent-prs.mjs",
"corpus:validate": "node scripts/agent-task-corpus/cli.mjs",
"corpus:readiness": "node scripts/agent-task-corpus/cli.mjs --strict",
"corpus:qualify": "node scripts/agent-task-corpus/qualify-cli.mjs",
"corpus:plan": "node scripts/agent-task-corpus/run-cli.mjs",
"corpus:run": "node scripts/agent-task-corpus/run-cli.mjs --execute",
"corpus:evaluate": "node scripts/agent-task-corpus/evaluate-cli.mjs",
"corpus:context-plan": "node scripts/agent-task-corpus/context-provider-plan-cli.mjs",
"corpus:context-snapshot": "node scripts/agent-task-corpus/prepare-context-snapshot.mjs",
"corpus:context-run": "node scripts/agent-task-corpus/context-provider-run-cli.mjs",
"corpus:context-evaluate": "node scripts/agent-task-corpus/context-provider-evaluate-cli.mjs",
"runtime:detect": "node scripts/runtime-failure-capsule/cli.mjs detect",
"runtime:qualify": "node scripts/runtime-failure-capsule/cli.mjs qualify",
"runtime:qualify-portfolio": "node scripts/runtime-failure-capsule/cli.mjs qualify-portfolio",
"runtime:plan-performance": "node scripts/runtime-failure-capsule/cli.mjs plan-performance",
"runtime:plan-flow-campaign": "node scripts/runtime-failure-capsule/cli.mjs plan-flow-campaign",
"runtime:supervise-performance": "node scripts/runtime-failure-capsule/cli.mjs supervise-performance",
"runtime:inspect-performance-run": "node scripts/runtime-failure-capsule/cli.mjs inspect-performance-run",
"runtime:diagnose": "node scripts/runtime-failure-capsule/cli.mjs run",
"runtime:diagnose-performance": "node scripts/runtime-failure-capsule/cli.mjs diagnose-performance",
"runtime:capture-flow": "node scripts/runtime-failure-capsule/cli.mjs capture-flow",
"runtime:campaign": "node scripts/runtime-failure-capsule/campaign-cli.mjs",
"runtime:mcp": "node scripts/runtime-failure-capsule/mcp.mjs",
"runtime:profile": "node scripts/runtime-failure-capsule/cli.mjs profile",
"runtime:verify-paired-optimization": "node scripts/runtime-failure-capsule/cli.mjs verify-paired-optimization",
"runtime:verify-optimization": "node scripts/runtime-failure-capsule/cli.mjs verify-optimization",
"verification:ingest": "node scripts/verification-receipts/cli.mjs ingest",
"verification:compare": "node scripts/verification-receipts/cli.mjs compare",
"verification:mcp": "node scripts/verification-receipts/mcp.mjs",
"test:benchmark": "node --test scripts/run-catch-rate-benchmark.test.mjs scripts/run-structural-context-evaluation.test.mjs",
"test:graph-context": "node --test scripts/run-structural-context-evaluation.test.mjs",
"test:corpus-contracts": "node --test scripts/agent-task-corpus/*.test.mjs",
"test:context-provider-plan": "node --test scripts/agent-task-corpus/context-provider-plan.test.mjs",
"test:runtime-failure-capsule": "node --test scripts/runtime-failure-capsule/*.test.mjs",
"test:verification-receipts": "node --test scripts/verification-receipts/*.test.mjs",
"test:automation": "node --test scripts/emit-foundry-receipt.test.mjs",
"test:coverage": "pnpm --filter @code-reviewer/desktop test:coverage",
"verify": "pnpm --filter @code-reviewer/desktop verify",
"prepare": "husky || true",
"lint": "biome check .",
"format": "biome format --write .",
"deploy": "node scripts/manual-deploy.mjs deploy-landing.yml ci.yml",
"knip": "knip --no-exit-code --reporter symbols",
"knip:strict": "knip --reporter symbols",
"quality:change-size": "node scripts/check-change-size.mjs",
"quality:complexity": "node scripts/check-changed-complexity.mjs",
"quality:cycles": "biome lint --only=suspicious/noImportCycles .",
"quality:dependencies": "pnpm audit --audit-level high",
"quality:duplication": "jscpd apps/desktop/src apps/landing-page-astro/src scripts --min-lines 8 --min-tokens 60 --mode strict --format typescript,tsx,javascript --cross-formats js-ts --ignore '**/fixtures/**,**/generated/**,**/gen/**,**/node_modules/**,**/dist/**,**/out/**,**/coverage/**' --threshold 0.81 --reporters console,threshold --no-colors --no-tips"
},
"license": "ISC",
"lint-staged": {
"apps/desktop/src/**/*.{ts,tsx}": [
"biome check --write"
]
},
"devDependencies": {
"@biomejs/biome": "^2.5.1",
"husky": "^9.1.7",
"jscpd": "5.0.14",
"knip": "^6.6.3",
"lint-staged": "^16.4.0",
"ultracite": "7.10.2"
},
"optionalDependencies": {
"@tailwindcss/oxide-linux-x64-gnu": "^4.2.4",
"lightningcss-linux-x64-gnu": "^1.32.0"
},
"pnpm": {
"overrides": {
"@babel/core": "7.29.6",
"@tailwindcss/vite>vite": "7.3.6",
"astro>esbuild": "0.28.1",
"brace-expansion": "5.0.9",
"js-yaml": "4.3.1",
"nanoid": "3.3.18",
"postcss": "8.5.26",
"sharp": "0.35.3",
"svgo": "4.0.2",
"tsx>esbuild": "0.28.1",
"undici": "7.29.0",
"wrangler>esbuild": "0.28.1",
"ws": "8.21.3"
}
},
"packageManager": "pnpm@10.33.2"
}