package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "@opencode-agents/eval-framework",
  3. "version": "0.1.0",
  4. "type": "module",
  5. "description": "Evaluation framework for OpenCode agents",
  6. "main": "dist/index.js",
  7. "types": "dist/index.d.ts",
  8. "scripts": {
  9. "build": "tsc",
  10. "build:watch": "tsc --watch",
  11. "test": "vitest",
  12. "test:watch": "vitest --watch",
  13. "test:integration": "vitest --config vitest.integration.config.ts",
  14. "lint": "eslint src/**/*.ts",
  15. "lint:fix": "eslint src/**/*.ts --fix",
  16. "eval": "node dist/cli.js",
  17. "report": "node dist/cli.js report",
  18. "eval:sdk": "tsx src/sdk/run-sdk-tests.ts",
  19. "eval:sdk:debug": "tsx src/sdk/run-sdk-tests.ts --debug",
  20. "eval:sdk:interactive": "tsx src/sdk/run-sdk-tests.ts --interactive"
  21. },
  22. "keywords": [
  23. "opencode",
  24. "evaluation",
  25. "testing",
  26. "agents",
  27. "ai"
  28. ],
  29. "author": "",
  30. "license": "MIT",
  31. "dependencies": {
  32. "@opencode-ai/sdk": "^1.0.90",
  33. "glob": "^13.0.0",
  34. "yaml": "^2.3.4",
  35. "zod": "^3.25.76"
  36. },
  37. "devDependencies": {
  38. "@types/glob": "^8.1.0",
  39. "@types/node": "^20.10.0",
  40. "@typescript-eslint/eslint-plugin": "^6.13.0",
  41. "@typescript-eslint/parser": "^6.13.0",
  42. "eslint": "^8.54.0",
  43. "tsx": "^4.20.6",
  44. "typescript": "^5.3.0",
  45. "vitest": "^1.0.0"
  46. }
  47. }