package.json 702 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "@cline/analysis",
  3. "version": "1.0.0",
  4. "description": "Analysis framework for Cline evaluations with failure classification and metrics",
  5. "type": "module",
  6. "main": "dist/index.js",
  7. "types": "dist/index.d.ts",
  8. "scripts": {
  9. "start": "tsx src/cli.ts",
  10. "build": "tsc",
  11. "test": "vitest run",
  12. "test:watch": "vitest",
  13. "test:ui": "vitest --ui"
  14. },
  15. "keywords": [
  16. "cline",
  17. "evaluation",
  18. "benchmarking",
  19. "ai-testing",
  20. "metrics"
  21. ],
  22. "dependencies": {
  23. "commander": "^12.0.0",
  24. "js-yaml": "^4.1.0",
  25. "chalk": "^5.0.0"
  26. },
  27. "devDependencies": {
  28. "@types/node": "^20.0.0",
  29. "@types/js-yaml": "^4.0.0",
  30. "tsx": "^4.0.0",
  31. "typescript": "^5.0.0",
  32. "vitest": "^1.0.0"
  33. }
  34. }