{
  "name": "rollup-plugin-flat-dts",
  "version": "2.9.0",
  "description": ".d.ts files flattener and Rollup plugin",
  "keywords": [
    "rollup-plugin",
    "typescript",
    "dts",
    "@types"
  ],
  "homepage": "https://github.com/run-z/rollup-plugin-flat-dts",
  "repository": {
    "type": "git",
    "url": "ssh://git@github.com:run-z/rollup-plugin-flat-dts.git"
  },
  "license": "MIT",
  "author": "Ruslan Lopatin <ruslan.lopatin@gmail.com>",
  "bugs": {
    "url": "https://github.com/run-z/rollup-plugin-flat-dts/issues"
  },
  "type": "module",
  "types": "./dist/flat-dts.plugin.d.ts",
  "typesVersions": {
    "*": {
      "api": [
        "./dist/flat-dts.api.d.ts"
      ]
    }
  },
  "exports": {
    ".": {
      "types": "./dist/flat-dts.plugin.d.ts",
      "require": "./dist/flat-dts.plugin.cjs",
      "default": "./dist/flat-dts.plugin.js"
    },
    "./api": {
      "types": "./dist/flat-dts.api.d.ts",
      "require": "./dist/flat-dts.api.cjs",
      "default": "./dist/flat-dts.api.js"
    }
  },
  "sideEffects": false,
  "peerDependencies": {
    "rollup": "2.79.1 - 5.0",
    "typescript": "4.8.4 - 5.8"
  },
  "peerDependenciesMeta": {
    "rollup": {
      "optional": true
    }
  },
  "dependencies": {
    "is-glob": "^4.0.3",
    "micromatch": "^4.0.8",
    "source-map": "^0.7.4"
  },
  "devDependencies": {
    "@jest/globals": "^29.7.0",
    "@rollup/plugin-typescript": "^12.1.1",
    "@run-z/eslint-config": "^5.0.0",
    "@run-z/prettier-config": "^3.0.0",
    "@types/is-glob": "^4.0.4",
    "@types/micromatch": "^4.0.9",
    "@types/node": "^22.10.0",
    "eslint": "^9.15.0",
    "gh-pages": "^6.2.0",
    "jest": "^29.7.0",
    "jest-junit": "^16.0.0",
    "prettier": "^3.3.3",
    "rollup": "^4.27.4",
    "run-z": "2.1.0-bootstrap",
    "shx": "^0.3.4",
    "ts-jest": "^29.2.5",
    "tslib": "^2.8.1",
    "typedoc": "^0.26.11",
    "typescript": "~5.7.2"
  },
  "scripts": {
    "all": "run-z +z build,lint,test",
    "bootstrap": "rollup -c && node --enable-source-maps ./build/build-dts.js",
    "build": "run-z +z build:bundle build:dts",
    "build:bundle": "run-z +z --then rollup -c",
    "build:dts": "run-z +z --then node --enable-source-maps ./build/build-dts.js",
    "ci:all": "run-z all +cmd:jest/--ci/--runInBand",
    "clean": "run-z +z --then shx rm -rf dist target",
    "doc": "run-z +z --then typedoc",
    "doc:publish": "run-z doc --then gh-pages --dist target/typedoc --dotfiles",
    "dts": "node --enable-source-maps ./build/build-dts.js",
    "format": "run-z +z --then prettier --write \"src/**/*.*\" \"*.{js,cjs,json,md}\"",
    "lint": "run-z +z --then eslint .",
    "test": "run-z +z env:NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" --then jest",
    "z": "run-z +cmd:rollup,+cmd:eslint,+cmd:jest +dts,+cmd:eslint,+cmd:jest"
  }
}