{
  "name": "skillgym",
  "version": "0.10.0",
  "private": false,
  "description": "Prove your agent skills work before you ship them.",
  "keywords": [
    "agents",
    "benchmark",
    "cli",
    "codex",
    "opencode",
    "testing"
  ],
  "homepage": "https://github.com/callstackincubator/skillgym#readme",
  "bugs": {
    "url": "https://github.com/callstackincubator/skillgym/issues"
  },
  "license": "MIT",
  "author": "Szymon Chmal",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/callstackincubator/skillgym.git"
  },
  "bin": {
    "skillgym": "./bin.js"
  },
  "files": [
    "dist",
    "bin.js",
    "skills"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./cli": "./dist/cli.js"
  },
  "dependencies": {
    "@types/node": ">=22.18.0",
    "cli-spinners": "^3.4.0",
    "commander": "^13.1.0",
    "nano-spawn": "^2.1.0",
    "picocolors": "^1.1.1",
    "pretty-ms": "^9.2.0",
    "string-width": "^7.2.0"
  },
  "devDependencies": {
    "@changesets/changelog-github": "^0.6.0",
    "@changesets/cli": "^2.30.0",
    "esbuild": "^0.25.3",
    "husky": "^9.1.7",
    "lint-staged": "^16.4.0",
    "oxfmt": "^0.47.0",
    "tsx": "^4.19.4",
    "typescript": "^5.8.3",
    "vitest": "^3.1.2"
  },
  "lint-staged": {
    "*": "oxfmt --no-error-on-unmatched-pattern"
  },
  "engines": {
    "node": ">=22.18.0"
  },
  "scripts": {
    "build": "npm run build:runtime && npm run build:declarations",
    "build:declarations": "tsc -p ./tsconfig.build.json",
    "build:runtime": "esbuild ./src/index.ts ./src/cli.ts --bundle --packages=external --platform=node --format=esm --target=node22 --outdir=./dist",
    "fmt": "oxfmt .",
    "fmt:check": "oxfmt --check .",
    "prepublish": "npm run build",
    "skillgym": "tsx ./index.ts",
    "skillgym:help": "tsx ./index.ts help",
    "skillgym:example:basic": "tsx ./index.ts run ./examples/basic-suite.ts",
    "skillgym:example:skill-selection": "tsx ./index.ts run ./examples/skill-selection-suite.ts",
    "test": "npm run build:runtime && vitest run",
    "typecheck": "tsc -p ./tsconfig.json --noEmit"
  }
}