{
  "name": "clauditorium",
  "version": "1.4.1",
  "description": "REST API wrapper for the Claude CLI",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "clauditorium": "dist/index.js"
  },
  "scripts": {
    "build": "tsc",
    "start": "node dist/index.js",
    "dev": "tsx watch src/index.ts",
    "lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
    "openapi:types:generate": "openapi-typescript openapi.yaml -o src/types/openapi.generated.ts",
    "openapi:types:check": "npm run openapi:types:generate && git diff --exit-code -- src/types/openapi.generated.ts",
    "openapi:lint": "tsx scripts/lint-openapi.ts",
    "openapi:validate": "tsx scripts/validate-openapi.ts",
    "contract:test": "vitest run test/contract",
    "api:contract:check": "npm run openapi:types:check && npm run openapi:lint && npm run openapi:validate && npm run contract:test",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "test:watch": "vitest",
    "docs:sync-openapi": "tsx scripts/sync-docs-openapi.ts",
    "docs:sync-openapi:check": "tsx scripts/sync-docs-openapi.ts --check",
    "docs:dev": "npm run docs:sync-openapi && vitepress dev docs-site",
    "docs:build": "npm run docs:sync-openapi && vitepress build docs-site",
    "docs:preview": "vitepress preview docs-site",
    "docs:check": "npm run docs:sync-openapi:check && npm run docs:build",
    "smoke:container": "./scripts/smoke-container.sh",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "claude",
    "anthropic",
    "api",
    "rest",
    "server",
    "cli",
    "ai",
    "llm"
  ],
  "author": "",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/erikmaday/clauditorium.git"
  },
  "homepage": "https://erikmaday.github.io/clauditorium/",
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "cors": "^2.8.5",
    "express": "^5.2.1",
    "pino": "^10.3.1",
    "prom-client": "^15.1.3"
  },
  "devDependencies": {
    "@apidevtools/swagger-parser": "^12.1.0",
    "@types/cors": "^2.8.17",
    "@types/express": "^5.0.0",
    "@types/node": "^22.19.11",
    "@types/supertest": "^6.0.3",
    "@typescript-eslint/eslint-plugin": "^8.43.0",
    "@typescript-eslint/parser": "^8.43.0",
    "@vitest/coverage-v8": "^4.0.18",
    "eslint": "^10.0.0",
    "openapi-response-validator": "^12.1.3",
    "openapi-typescript": "^7.13.0",
    "supertest": "^7.1.4",
    "tsx": "^4.19.2",
    "typescript": "^5.7.3",
    "vitepress": "^1.6.4",
    "vitest": "^4.0.18",
    "yaml": "^2.8.1"
  },
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ]
}
