package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "@controlstack/eval-framework",
  3. "version": "1.1.0",
  4. "private": true,
  5. "type": "module",
  6. "description": "Evaluation framework for OpenCode agents",
  7. "main": "dist/index.js",
  8. "types": "dist/index.d.ts",
  9. "scripts": {
  10. "build": "tsc",
  11. "build:watch": "tsc --watch",
  12. "test": "vitest",
  13. "test:watch": "vitest --watch",
  14. "test:ci": "vitest run src/__tests__/error-handling.test.ts src/evaluators/__tests__/evaluator-reliability.test.ts src/evaluators/__tests__/context-loading-evaluator.test.ts src/evaluators/__tests__/tool-usage-enhanced.test.ts src/sdk/__tests__/yaml-loader.test.ts src/sdk/__tests__/suite-validator.test.ts src/sdk/__tests__/validate-suites-cli.test.ts",
  15. "test:integration": "vitest --config vitest.integration.config.ts",
  16. "lint": "eslint src/**/*.ts",
  17. "lint:fix": "eslint src/**/*.ts --fix",
  18. "eval": "node dist/cli.js",
  19. "report": "node dist/cli.js report",
  20. "eval:sdk": "tsx src/sdk/run-sdk-tests.ts",
  21. "eval:sdk:core": "tsx src/sdk/run-sdk-tests.ts --core",
  22. "eval:sdk:debug": "tsx src/sdk/run-sdk-tests.ts --debug",
  23. "eval:sdk:interactive": "tsx src/sdk/run-sdk-tests.ts --interactive",
  24. "validate:suites": "tsx src/sdk/validate-suites-cli.ts",
  25. "validate:suites:all": "tsx src/sdk/validate-suites-cli.ts --all"
  26. },
  27. "keywords": [
  28. "opencode",
  29. "evaluation",
  30. "testing",
  31. "agents",
  32. "ai"
  33. ],
  34. "author": "",
  35. "license": "MIT",
  36. "dependencies": {
  37. "@opencode-ai/sdk": "1.0.90",
  38. "glob": "13.0.6",
  39. "yaml": "2.8.1",
  40. "zod": "3.25.76"
  41. },
  42. "devDependencies": {
  43. "@types/node": "^20.10.0",
  44. "@typescript-eslint/eslint-plugin": "^6.13.0",
  45. "@typescript-eslint/parser": "^6.13.0",
  46. "ajv-cli": "5.0.0",
  47. "eslint": "^8.54.0",
  48. "tsx": "^4.20.6",
  49. "typescript": "^5.3.0",
  50. "vitest": "^1.6.1"
  51. }
  52. }