{
  "name": "pi-model-auto",
  "version": "0.2.0",
  "description": "Pi extension package that routes each turn by Low/Medium/High/Ultra capability modes.",
  "type": "module",
  "exports": {
    ".": "./src/index.ts",
    "./core": {
      "types": "./dist/router-core.d.ts",
      "import": "./dist/router-core.js"
    }
  },
  "keywords": [
    "pi-package",
    "pi",
    "extension",
    "model-router"
  ],
  "license": "MIT",
  "homepage": "https://github.com/maynewong/pi-model-auto#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/maynewong/pi-model-auto.git"
  },
  "bugs": {
    "url": "https://github.com/maynewong/pi-model-auto/issues"
  },
  "files": [
    "dist",
    "src/index.ts",
    "src/router-core.ts",
    "src/quota.ts",
    "src/canonical-models.ts",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "pi": {
    "extensions": [
      "./src/index.ts"
    ]
  },
  "peerDependencies": {
    "@earendil-works/pi-ai": "*",
    "@earendil-works/pi-coding-agent": "*"
  },
  "devDependencies": {
    "@types/node": "24.12.4",
    "typescript": "5.9.3",
    "vitest": "4.1.9"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "pretest": "npm run build",
    "typecheck": "tsc --noEmit",
    "test": "vitest --run",
    "prepublishOnly": "npm run typecheck && npm test && npm run build",
    "release": "npm version patch && git push --follow-tags && npm publish"
  }
}
