{
  "name": "api-mock-smart",
  "version": "1.0.1",
  "description": "Smart OpenAPI/Swagger-based mock API server with realistic data generation.",
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "bin": {
    "api-mock-smart": "dist/cli.cjs"
  },
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.ts"
    },
    "./cli": {
      "import": "./dist/cli.mjs",
      "require": "./dist/cli.cjs"
    }
  },
  "scripts": {
    "build": "tsup src/index.ts src/cli.ts --format cjs,esm --dts --sourcemap --out-dir dist --clean",
    "build:types": "tsc --noEmit",
    "dev": "tsup src/index.ts src/cli.ts --format cjs,esm --watch --sourcemap --out-dir dist",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "lint": "echo \"No linter configured\"",
    "prepare": "npm run build",
    "prepublishOnly": "npm run build && npm test"
  },
  "keywords": [
    "mock",
    "api",
    "openapi",
    "swagger",
    "testing",
    "faker",
    "development",
    "mock-api",
    "mock-server",
    "api-mock",
    "openapi-mock",
    "swagger-mock",
    "test-server",
    "integration-testing"
  ],
  "author": "",
  "license": "MIT",
  "type": "module",
  "engines": {
    "node": ">=18"
  },
  "dependencies": {
    "@apidevtools/swagger-parser": "^10.0.3",
    "@faker-js/faker": "^9.0.0",
    "chokidar": "^4.0.0",
    "cors": "^2.8.5",
    "express": "^4.21.0",
    "openapi-types": "^12.1.3",
    "yargs": "^17.7.2",
    "chalk": "^5.3.0"
  },
  "devDependencies": {
    "@types/cors": "^2.8.17",
    "@types/express": "^4.17.21",
    "@types/node": "^22.0.0",
    "@types/yargs": "^17.0.32",
    "vitest": "^2.1.0",
    "tsup": "^8.3.0",
    "typescript": "^5.7.0"
  }
}
