{
  "name": "msw-mock-gen",
  "version": "1.0.4",
  "description": "A Vite plugin that automatically generates MSW (Mock Service Worker) handlers from your API calls by watching TypeScript/JavaScript files and parsing URL patterns. Supports Vite 2+ and Node.js 12+ for maximum compatibility.",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "test": "vitest",
    "test:watch": "vitest --watch",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "format": "prettier --write .",
    "prepublishOnly": "npm run build",
    "prepack": "npm run build"
  },
  "keywords": [
    "vite",
    "plugin",
    "msw",
    "mock",
    "service-worker",
    "api-mocking",
    "typescript",
    "javascript",
    "development",
    "testing",
    "api",
    "endpoints",
    "handlers",
    "auto-generate",
    "file-watcher"
  ],
  "author": "Andrew Brough <andrew.jm.brough@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/AndrewBrough/msw-mock-gen.git"
  },
  "bugs": {
    "url": "https://github.com/AndrewBrough/msw-mock-gen/issues"
  },
  "homepage": "https://github.com/AndrewBrough/msw-mock-gen#readme",
  "engines": {
    "node": ">=12.0.0"
  },
  "peerDependencies": {
    "@tanstack/react-query": ">=3.0.0",
    "vite": ">=2.0.0"
  },
  "dependencies": {
    "glob": ">=8.0.0",
    "msw": ">=1.0.0"
  },
  "devDependencies": {
    "@types/node": "^18.19.120",
    "@typescript-eslint/eslint-plugin": "^6.21.0",
    "@typescript-eslint/parser": "^6.21.0",
    "eslint": "^8.57.1",
    "eslint-config-prettier": "^8.10.2",
    "eslint-plugin-prettier": "^5.5.3",
    "eslint-plugin-unused-imports": "^4.1.4",
    "globals": "^13.0.0",
    "prettier": "^3.6.2",
    "prettier-eslint": "^16.4.2",
    "typescript": "^5.8.3",
    "vite": "^5.4.19",
    "vite-tsconfig-paths": "^4.3.2",
    "vitest": "^0.25.0"
  }
}
