{
  "name": "rollup-plugin-preserve-directives",
  "description": "A Rollup plugin to preserve directives like \"use client\" when preserveModules is true.",
  "version": "0.4.0",
  "author": "Fredrik Höglund <fredrik.hoglund@gmail.com>",
  "license": "MIT",
  "keywords": [
    "rollup-plugin"
  ],
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "types": "dist/index.d.ts",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Ephem/rollup-plugin-preserve-directives.git"
  },
  "homepage": "https://github.com/Ephem/rollup-plugin-preserve-directives#readme",
  "bugs": "https://github.com/Ephem/rollup-plugin-preserve-directives/issues",
  "scripts": {
    "check": "tsc",
    "build": "tsup src/index.ts --dts --format cjs,esm",
    "watch": "npm run build --watch"
  },
  "peerDependencies": {
    "rollup": "2.x || 3.x || 4.x"
  },
  "dependencies": {
    "@rollup/pluginutils": "^5.1.0",
    "magic-string": "^0.30.5"
  },
  "devDependencies": {
    "rollup": "^4.9.5",
    "tsup": "^8.0.1",
    "typescript": "^5.3.3"
  },
  "files": [
    "dist",
    "src",
    "LICENSE",
    "README.md",
    "CHANGELOG.md"
  ]
}
