{
  "name": "@uni-ku/pages-json",
  "type": "module",
  "version": "0.2.49",
  "description": "Define uniapp pages.json dynamically.",
  "author": "Edwin Xu <edwinhuish@gmail.com>",
  "license": "MIT",
  "homepage": "https://github.com/uni-ku/pages-json",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/uni-ku/pages-json.git"
  },
  "bugs": "https://github.com/uni-ku/pages-json/issues",
  "keywords": [
    "uniapp",
    "uni-app",
    "pages.json",
    "macros",
    "definePage"
  ],
  "sideEffects": false,
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./types": "./types/index.d.ts",
    "./types/*": "./types/*.d.ts",
    "./global": "./global.d.ts",
    "./client": "./client.d.ts",
    "./*": {
      "import": {
        "types": "./dist/*.d.ts",
        "default": "./dist/*.js"
      },
      "require": {
        "types": "./dist/*.d.cts",
        "default": "./dist/*.cjs"
      }
    }
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "*.d.ts",
    "dist",
    "types"
  ],
  "peerDependencies": {
    "vite": "^5.4.19"
  },
  "dependencies": {
    "@babel/generator": "^7.28.3",
    "@babel/types": "^7.28.2",
    "@vue/compiler-sfc": "3.4.21",
    "ast-kit": "^0.12.2",
    "chokidar": "^3.6.0",
    "comment-json": "^4.4.1",
    "debug": "^4.4.1",
    "fast-glob": "^3.3.3",
    "magic-string": "^0.30.18",
    "typescript": "^5.9.2"
  },
  "devDependencies": {
    "@antfu/eslint-config": "^3.16.0",
    "@commitlint/cli": "^19.8.1",
    "@commitlint/config-conventional": "^19.8.1",
    "@types/babel__generator": "^7.27.0",
    "@types/debug": "^4.1.12",
    "@types/node": "^20.19.11",
    "@typescript-eslint/eslint-plugin": "^8.41.0",
    "@typescript-eslint/parser": "^8.41.0",
    "bumpp": "^9.11.1",
    "commitizen": "^4.3.1",
    "cross-env": "^7.0.3",
    "cz-git": "^1.12.0",
    "eslint": "^9.34.0",
    "eslint-config-flat-gitignore": "^2.1.0",
    "lint-staged": "^16.2.6",
    "simple-git-hooks": "^2.13.1",
    "tsup": "^8.5.0",
    "vite": "^5.4.19",
    "vitest": "^1.6.1"
  },
  "simple-git-hooks": {
    "pre-commit": "pnpm lint-staged",
    "commit-msg": "npx commitlint --edit ${1}"
  },
  "lint-staged": {
    "*.{js,ts,tsx,vue,md}": [
      "tsc -p . --noEmit --skipLibCheck",
      "eslint . --fix --quiet --max-warnings=0",
      "vitest --run"
    ]
  },
  "config": {
    "commitizen": {
      "path": "node_modules/cz-git"
    }
  },
  "scripts": {
    "dev": "npm run dev:h5",
    "dev:h5": "cross-env NODE_ENV=development npm run build && npm -C playground run dev:h5",
    "dev:mp-weixin": "cross-env NODE_ENV=development npm run build && npm -C playground run dev:mp-weixin",
    "build": "tsup",
    "build:h5": "npm run build && npm -C playground run build:h5",
    "build:mp-weixin": "npm run build && npm -C playground run build:mp-weixin",
    "typecheck": "tsc -p . --noEmit --skipLibCheck",
    "lint": "eslint . --fix --quiet --max-warnings=0",
    "test": "vitest",
    "coverage": "vitest run --coverage",
    "release": "bumpp",
    "commit": "git-cz"
  }
}