{
  "name": "tsnapi",
  "type": "module",
  "version": "0.3.3",
  "description": "Library public API snapshot testing for runtime exports and type declarations.",
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
  "license": "MIT",
  "funding": "https://github.com/sponsors/antfu",
  "homepage": "https://github.com/antfu/tsnapi#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/antfu/tsnapi.git"
  },
  "bugs": "https://github.com/antfu/tsnapi/issues",
  "keywords": [
    "api",
    "snapshot",
    "typescript",
    "dts",
    "testing",
    "breaking-changes"
  ],
  "sideEffects": false,
  "exports": {
    ".": "./dist/index.mjs",
    "./cli": "./dist/cli.mjs",
    "./rolldown": "./dist/rolldown.mjs",
    "./vitest": "./dist/vitest.mjs",
    "./package.json": "./package.json"
  },
  "types": "./dist/index.d.mts",
  "bin": {
    "tsnapi": "./dist/cli.mjs"
  },
  "files": [
    "dist"
  ],
  "peerDependencies": {
    "vitest": ">=4.0.0"
  },
  "peerDependenciesMeta": {
    "vitest": {
      "optional": true
    }
  },
  "dependencies": {
    "@vitest/utils": "^4.1.5",
    "cac": "^7.0.0",
    "magic-string": "^0.30.21",
    "oxc-parser": "^0.129.0",
    "tinyglobby": "^0.2.16"
  },
  "devDependencies": {
    "@antfu/eslint-config": "^9.0.0",
    "@antfu/ni": "^30.1.0",
    "@oxc-project/types": "^0.129.0",
    "@types/node": "^25.6.2",
    "bumpp": "^11.1.0",
    "eslint": "^10.3.0",
    "lint-staged": "^17.0.4",
    "rolldown": "^1.0.0",
    "simple-git-hooks": "^2.13.1",
    "tsdown": "^0.22.0",
    "tsx": "^4.21.0",
    "typescript": "^6.0.3",
    "vitest": "^4.1.5"
  },
  "simple-git-hooks": {
    "pre-commit": "npx lint-staged && pnpm run build && pnpm run test"
  },
  "lint-staged": {
    "*": "eslint --fix"
  },
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "lint": "eslint",
    "release": "bumpp",
    "start": "tsx src/cli.ts",
    "test": "vitest",
    "typecheck": "tsc"
  }
}