{
  "name": "vite-plugin-simple-json-server",
  "version": "0.6.2",
  "description": "Provide a file-based mock API for Vite in dev mode",
  "keywords": [
    "vite",
    "plugin",
    "vite-plugin",
    "json",
    "api",
    "server"
  ],
  "author": {
    "name": "Oleksii Tymoshenko"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/alextim/vite-plugin-simple-json-server.git",
    "directory": "packages/vite-plugin-simple-json-server"
  },
  "homepage": "https://github.com/alextim/vite-plugin-simple-json-server/tree/main/packages/vite-plugin-simple-json-server#readme",
  "bugs": "https://github.com/alextim/vite-plugin-simple-json-server/issues",
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "files": [
    "dist/index.cjs",
    "dist/index.mjs",
    "dist/index.d.ts"
  ],
  "dependencies": {
    "@howiefh/ant-path-matcher": "^0.0.4",
    "lodash.get": "^4.4.2"
  },
  "devDependencies": {
    "@types/lodash.get": "^4.4.7",
    "@types/mock-fs": "^4.13.1",
    "@types/node": "^18.7.23",
    "mock-fs": "^5.1.4",
    "typescript": "^4.8.4",
    "unbuild": "^0.8.11",
    "vite": "^4.0.3",
    "vitest": "^0.23.4"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org"
  },
  "peerDependencies": {
    "vite": "^4.0.0"
  },
  "engines": {
    "node": ">=15.7.0"
  },
  "scripts": {
    "build": "rimraf dist && unbuild",
    "typecheck": "tsc --noEmit --pretty",
    "test": "vitest run",
    "test:v": "vitest --run --reporter verbose",
    "coverage": "vitest run --coverage",
    "test:pub": "pnpm publish --dry-run --no-git-checks"
  }
}