mirror of
https://github.com/harivansh-afk/evaluclaude-harness.git
synced 2026-04-15 12:03:51 +00:00
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "evaluclaude-harness",
|
|
"version": "0.1.0",
|
|
"description": "Zero-to-evals in one command. Claude analyzes codebases and generates functional tests.",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"bin": {
|
|
"evaluclaude": "./dist/cli/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"start": "node dist/cli/index.js",
|
|
"test": "vitest",
|
|
"lint": "eslint src --ext .ts",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"keywords": [
|
|
"eval",
|
|
"claude",
|
|
"testing",
|
|
"ai",
|
|
"code-analysis"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@anthropic-ai/claude-agent-sdk": "^0.2.4",
|
|
"@anthropic-ai/sdk": "^0.39.0",
|
|
"commander": "^12.1.0",
|
|
"glob": "^10.4.0",
|
|
"handlebars": "^4.7.8",
|
|
"inquirer": "^9.2.0",
|
|
"js-yaml": "^4.1.0",
|
|
"tree-sitter": "^0.21.1",
|
|
"tree-sitter-python": "^0.21.0",
|
|
"tree-sitter-typescript": "^0.21.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/inquirer": "^9.0.7",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "^20.14.0",
|
|
"eslint": "^8.57.0",
|
|
"typescript": "^5.4.5",
|
|
"vitest": "^1.6.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|