{
  "name": "vite-plugin-pages-react",
  "version": "0.0.2",
  "description": "File system base vue-router plugin for Vite",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/mzaini30/vite-plugin-pages-react"
  },
  "exports": {
    ".": {
      "require": "./dist/index.js",
      "import": "./dist/index.mjs"
    }
  },
  "author": "hannoeru <me@hanlee.co>",
  "files": [
    "dist",
    "client.d.ts",
    "client-react.d.ts"
  ],
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "homepage": "https://github.com/mzaini30/vite-plugin-pages-react",
  "bugs": "https://github.com/mzaini30/vite-plugin-pages-react/issues",
  "peerDependencies": {
    "@vue/compiler-sfc": ">=3",
    "vite": ">=2"
  },
  "peerDependenciesMeta": {
    "@vue/compiler-sfc": {
      "optional": true
    }
  },
  "dependencies": {
    "@antfu/utils": "^0.3.0",
    "debug": "^4.3.2",
    "deep-equal": "^2.0.5",
    "fast-glob": "^3.2.7",
    "json5": "^2.2.0",
    "yaml": "^2.0.0-7"
  },
  "devDependencies": {
    "@hannoeru/eslint-config": "^0.2.4",
    "@types/debug": "^4.1.7",
    "@types/deep-equal": "^1.0.1",
    "@types/glob-to-regexp": "^0.4.1",
    "@types/jest": "^27.0.1",
    "@types/node": "^16.7.6",
    "@vue/compiler-sfc": "^3.2.6",
    "eslint": "^7.32.0",
    "jest": "^27.1.0",
    "react-router-config": "^5.1.1",
    "rollup": "^2.56.3",
    "ts-jest": "^27.0.5",
    "ts-node": "^10.2.1",
    "tsup": "^4.14.0",
    "typescript": "^4.4.2",
    "vite": "^2.5.1",
    "vue-router": "^4.0.11"
  },
  "scripts": {
    "dev": "npm run build -- --watch --ignore-watch examples",
    "build": "tsup src/index.ts --dts --format cjs,esm --no-splitting --target node13.2",
    "release": "npx bumpp --commit --tag --push",
    "example:dev": "npm -C examples/vue run dev",
    "example:build": "npm -C examples/vue run build",
    "example:serve": "npm -C examples/vue run serve",
    "test": "jest --runInBand",
    "lint": "eslint --ext .js,.ts,.vue,.json .",
    "lint:fix": "eslint --fix --ext .js,.ts,.vue,.json ."
  }
}