@clawdcc/cvm-benchmark
Version:
Comprehensive benchmarking and performance analysis tools for Claude Code versions
68 lines (67 loc) • 1.71 kB
JSON
{
"name": "@clawdcc/cvm-benchmark",
"version": "1.0.4",
"description": "Comprehensive benchmarking and performance analysis tools for Claude Code versions",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"cvm-benchmark": "./bin/cvm-benchmark.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "vitest run tests/integration.test.ts",
"typecheck": "tsc --noEmit",
"benchmark:run": "node dist/cli.js run",
"benchmark:suite": "node dist/cli.js suite",
"benchmark:update": "node scripts/update-benchmarks.js",
"benchmark:all": "vitest run tests/integration.test.ts",
"benchmark:full": "node scripts/full-benchmark.js",
"cvm:cleanup": "node scripts/cleanup-all-versions.js",
"report:generate": "node dist/cli.js report"
},
"keywords": [
"cvm",
"claude",
"claude-code",
"benchmark",
"performance",
"analysis",
"version-testing"
],
"author": "clawdcc",
"license": "MIT",
"homepage": "https://clawd.cc/cvm-benchmark",
"repository": {
"type": "git",
"url": "https://github.com/clawdcc/cvm-benchmark.git"
},
"bugs": {
"url": "https://github.com/clawdcc/cvm-benchmark/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"node-pty": "^1.0.0",
"ora": "^7.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.6",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.0.4"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
]
}