{
  "name": "@vurb/openapi-gen",
  "description": "OpenAPI-to-Vurb Server Generator. Parses OpenAPI 3.x and Swagger 2.0 specs and generates a complete, ready-to-run MCP Server with full MVA tool stacks (Presenters, Tools, Registry, Server) — all features configurable via YAML.",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "openapi-gen": "./dist/cli.js"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "scripts": {
    "build": "tsc",
    "lint": "eslint src/",
    "lint:fix": "eslint src/ --fix",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "mcp",
    "openapi",
    "swagger",
    "code-generator",
    "vurb",
    "zod",
    "mva",
    "presenter",
    "ai",
    "llm"
  ],
  "author": "Renato Marinho",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vinkius-labs/vurb.ts.git",
    "directory": "packages/openapi"
  },
  "bugs": {
    "url": "https://github.com/vinkius-labs/vurb.ts/issues"
  },
  "homepage": "https://vurb.vinkius.com/",
  "files": [
    "dist",
    "README.md"
  ],
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@vurb/core": "^3.19.6",
    "yaml": "^2.7.0"
  },
  "peerDependencies": {
    "zod": "^3.25.1 || ^4.0.0"
  },
  "license": "Apache-2.0",
  "devDependencies": {
    "@types/node": "^25.3.0"
  },
  "version": "3.19.6"
}
