package.json 947 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "@opencode-agents/eval-framework",
  3. "version": "0.1.0",
  4. "description": "Evaluation framework for OpenCode agents",
  5. "main": "dist/index.js",
  6. "types": "dist/index.d.ts",
  7. "scripts": {
  8. "build": "tsc",
  9. "build:watch": "tsc --watch",
  10. "test": "vitest",
  11. "test:watch": "vitest --watch",
  12. "test:integration": "vitest --config vitest.integration.config.ts",
  13. "lint": "eslint src/**/*.ts",
  14. "lint:fix": "eslint src/**/*.ts --fix",
  15. "eval": "node dist/cli.js",
  16. "report": "node dist/cli.js report"
  17. },
  18. "keywords": [
  19. "opencode",
  20. "evaluation",
  21. "testing",
  22. "agents",
  23. "ai"
  24. ],
  25. "author": "",
  26. "license": "MIT",
  27. "dependencies": {
  28. "yaml": "^2.3.4"
  29. },
  30. "devDependencies": {
  31. "@types/node": "^20.10.0",
  32. "@typescript-eslint/eslint-plugin": "^6.13.0",
  33. "@typescript-eslint/parser": "^6.13.0",
  34. "eslint": "^8.54.0",
  35. "typescript": "^5.3.0",
  36. "vitest": "^1.0.0"
  37. }
  38. }