{
  "name": "@x12i/ai-tools",
  "version": "5.1.0",
  "description": "AI model catalogs via @x12i/ai-profiles, cost calculation, and LLM utilities",
  "license": "MIT",
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "ai-tools": "dist/cli/index.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./cost": {
      "types": "./dist/cost/index.d.ts",
      "import": "./dist/cost/index.js",
      "require": "./dist/cost/index.cjs"
    },
    "./toolbox": {
      "types": "./dist/toolbox/index.d.ts",
      "import": "./dist/toolbox/index.js",
      "require": "./dist/toolbox/index.cjs"
    },
    "./sync": {
      "types": "./dist/sync/index.d.ts",
      "import": "./dist/sync/index.js",
      "require": "./dist/sync/index.cjs"
    },
    "./models": {
      "types": "./dist/models/index.d.ts",
      "import": "./dist/models/index.js",
      "require": "./dist/models/index.cjs"
    },
    "./catalog": {
      "types": "./dist/catalog/index.d.ts",
      "import": "./dist/catalog/index.js",
      "require": "./dist/catalog/index.cjs"
    },
    "./profiles": {
      "types": "./dist/profiles/index.d.ts",
      "import": "./dist/profiles/index.js",
      "require": "./dist/profiles/index.cjs"
    },
    "./invoke": {
      "types": "./dist/invoke/index.d.ts",
      "import": "./dist/invoke/index.js",
      "require": "./dist/invoke/index.cjs"
    }
  },
  "files": [
    "dist",
    "schemas",
    "CHANGELOG.md",
    "README.md"
  ],
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "build": "tsup",
    "test": "vitest run",
    "test:live": "vitest run --config vitest.live.config.ts",
    "test:all": "npm test && npm run test:live",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "prepublishOnly": "npm run build && npm test"
  },
  "peerDependenciesMeta": {
    "@x12i/helpers": {
      "optional": true
    },
    "openai": {
      "optional": true
    },
    "better-sqlite3": {
      "optional": true
    }
  },
  "dependencies": {
    "@x12i/ai-profiles": "^4.4.0",
    "@x12i/env": "^4.0.3",
    "commander": "^12.1.0",
    "dotenv": "^16.4.7",
    "nx-cache": "^1.0.2",
    "zod": "^3.24.2"
  },
  "devDependencies": {
    "@types/node": "^22.13.10",
    "tsup": "^8.4.0",
    "tsx": "^4.19.3",
    "typescript": "^5.8.2",
    "vitest": "^1.6.1"
  },
  "keywords": [
    "ai",
    "openrouter",
    "llm",
    "cost",
    "models"
  ],
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/x12i/ai-tools.git"
  },
  "publishConfig": {
    "access": "public"
  }
}
