| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "name": "@opencode-agents/eval-framework",
- "version": "0.1.0",
- "type": "module",
- "description": "Evaluation framework for OpenCode agents",
- "main": "dist/index.js",
- "types": "dist/index.d.ts",
- "scripts": {
- "build": "tsc",
- "build:watch": "tsc --watch",
- "test": "vitest",
- "test:watch": "vitest --watch",
- "test:integration": "vitest --config vitest.integration.config.ts",
- "lint": "eslint src/**/*.ts",
- "lint:fix": "eslint src/**/*.ts --fix",
- "eval": "node dist/cli.js",
- "report": "node dist/cli.js report",
- "eval:sdk": "tsx src/sdk/run-sdk-tests.ts",
- "eval:sdk:debug": "tsx src/sdk/run-sdk-tests.ts --debug",
- "eval:sdk:interactive": "tsx src/sdk/run-sdk-tests.ts --interactive"
- },
- "keywords": [
- "opencode",
- "evaluation",
- "testing",
- "agents",
- "ai"
- ],
- "author": "",
- "license": "MIT",
- "dependencies": {
- "@opencode-ai/sdk": "^1.0.90",
- "glob": "^13.0.0",
- "yaml": "^2.3.4",
- "zod": "^3.25.76"
- },
- "devDependencies": {
- "@types/glob": "^8.1.0",
- "@types/node": "^20.10.0",
- "@typescript-eslint/eslint-plugin": "^6.13.0",
- "@typescript-eslint/parser": "^6.13.0",
- "eslint": "^8.54.0",
- "tsx": "^4.20.6",
- "typescript": "^5.3.0",
- "vitest": "^1.0.0"
- }
- }
|