{
  "name": "vitest-package-exports",
  "type": "module",
  "version": "1.2.0",
  "description": "A Vitest util to get all exported APIs of a package and prevent unintended breaking changes",
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
  "license": "MIT",
  "funding": "https://github.com/sponsors/antfu",
  "homepage": "https://github.com/antfu/vitest-package-exports#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/antfu/vitest-package-exports.git"
  },
  "bugs": "https://github.com/antfu/vitest-package-exports/issues",
  "keywords": [
    "vitest",
    "snapshot"
  ],
  "sideEffects": false,
  "exports": {
    ".": "./dist/index.mjs",
    "./package.json": "./package.json"
  },
  "types": "./dist/index.d.mts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "find-up-simple": "^1.0.1",
    "pathe": "^2.0.3"
  },
  "devDependencies": {
    "@antfu/eslint-config": "^7.2.0",
    "@antfu/ni": "^28.2.0",
    "@antfu/utils": "^9.3.0",
    "@types/node": "^25.2.0",
    "bumpp": "^10.4.0",
    "eslint": "^9.39.2",
    "lint-staged": "^16.2.7",
    "pnpm": "^10.28.2",
    "rollup": "^4.57.1",
    "simple-git-hooks": "^2.13.1",
    "tsdown": "^0.20.2",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3",
    "vite": "^7.3.1",
    "vitest": "^4.0.18"
  },
  "simple-git-hooks": {
    "pre-commit": "pnpm lint-staged"
  },
  "lint-staged": {
    "*": "eslint --fix"
  },
  "scripts": {
    "build": "tsdown",
    "lint": "eslint .",
    "release": "bumpp",
    "start": "tsx src/index.ts",
    "test": "vitest",
    "typecheck": "tsc"
  }
}