{
  "name": "@microsoft/vally",
  "version": "0.16.0",
  "description": "Core library for Vally — the evaluation platform for AI agents",
  "license": "MIT",
  "type": "module",
  "engines": {
    "node": ">=22.12.0"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": "./dist/index.js",
    "./backend": "./dist/backend/index.js",
    "./config": "./dist/config/index.js",
    "./converters": "./dist/converters/index.js",
    "./workspace": "./dist/workspace/index.js",
    "./executor": "./dist/executor/copilot-sdk-executor.js",
    "./executor/mock": "./dist/executor/mock-executor.js",
    "./otel-endpoint": "./dist/executor/otel-endpoint.js",
    "./graders": "./dist/graders/types.js",
    "./scoring": "./dist/scoring/scorer.js",
    "./params": "./dist/params/index.js",
    "./trajectory": "./dist/trajectory/index.js",
    "./utils": "./dist/utils/index.js"
  },
  "files": [
    "dist",
    "!dist/**/*.d.ts.map",
    "!dist/**/*.tsbuildinfo"
  ],
  "scripts": {
    "build": "tsc -b",
    "test": "tsc -b tests/tsconfig.json && vitest run --project=core",
    "lint": "eslint src/ tests/",
    "clean": "node --eval \"require('node:fs').rmSync('dist', { recursive: true, force: true })\""
  },
  "dependencies": {
    "@github/copilot": "1.0.80",
    "@github/copilot-sdk": "1.0.11",
    "@opentelemetry/api": "^1.9.1",
    "js-tiktoken": "^1.0.21",
    "mdast-util-from-markdown": "^2.0.3",
    "picomatch": "^4.0.7",
    "yaml": "^2.9.0",
    "zod": "^4.4.3"
  },
  "devDependencies": {
    "@modelcontextprotocol/sdk": "^1.30.0",
    "@opentelemetry/context-async-hooks": "^2.10.0",
    "@opentelemetry/core": "^2.10.0",
    "@opentelemetry/sdk-trace-base": "^2.10.0",
    "@types/mdast": "^4.0.4",
    "@types/picomatch": "^4.0.3",
    "vitest": "^4.1.11"
  },
  "publishConfig": {
    "tag": "latest"
  }
}
