{
  "name": "rollup-plugin-strip-shebang",
  "version": "2.0.0",
  "description": "A Rollup.js plugin to remove and optionally extract shebang.",
  "keywords": [
    "rollup",
    "plugin",
    "rollup-plugin",
    "shebang",
    "hashbang",
    "extract",
    "strip"
  ],
  "type": "commonjs",
  "exports": {
    "types": "./dist/types/index.d.ts",
    "import": "./dist/strip-shebang.mjs",
    "require": "./dist/strip-shebang.cjs",
    "node": "./dist/strip-shebang.cjs",
    "default": "./dist/strip-shebang.cjs"
  },
  "main": "./dist/strip-shebang.cjs",
  "module": "./dist/strip-shebang.mjs",
  "jsnext:main": "./dist/strip-shebang.mjs",
  "types": "./dist/types/index.d.ts",
  "typings": "./dist/types/index.d.ts",
  "bundlib": "bundlib.config.mjs",
  "scripts": {
    "clean:cache": "rimraf --glob node_modules/.cache/{bundlib,jest}",
    "clean:build": "rimraf dist coverage",
    "clean": "run-p clean:*",
    "lint:test": "eslint __test__",
    "lint:src": "eslint src",
    "lint": "run-p lint:*",
    "test": "jest --color -w 3",
    "dev": "bundlib -dw",
    "build": "bundlib -d",
    "build-ci": "run-s lint test build",
    "clean-build": "run-s clean build-ci",
    "prerelease": "run-s clean build-ci",
    "release": "standard-version",
    "prepare": "husky"
  },
  "engines": {
    "node": ">=18"
  },
  "dependencies": {
    "@rollup/pluginutils": "^5.1.0",
    "magic-string": "^0.30.11"
  },
  "devDependencies": {
    "@babel/core": "^7.25.2",
    "@babel/preset-env": "^7.25.3",
    "@eslint/js": "^9.9.0",
    "@stylistic/eslint-plugin": "^2.6.4",
    "@types/is-callable": "^1.1.2",
    "@types/jest": "^29.5.12",
    "@types/mock-fs": "^4.13.4",
    "@types/node": "^22.5.0",
    "bundlib": "^0.20.0",
    "chokidar": "^3.6.0",
    "core-js": "^3.38.1",
    "eslint": "^9.9.0",
    "globals": "^15.9.0",
    "husky": "^9.1.5",
    "jest": "^29.7.0",
    "mock-fs": "^5.2.0",
    "npm-run-all": "^4.1.5",
    "rimraf": "^6.0.1",
    "rollup": "^4.21.0",
    "standard-version": "^9.5.0",
    "ts-jest": "^29.2.4",
    "typescript": "^5.5.4",
    "typescript-eslint": "^8.2.0"
  },
  "peerDependencies": {
    "rollup": "^2.0.0||^3.0.0||^4.0.0"
  },
  "overrides": {
    "eslint": "^9.9.0",
    "rollup": "^4.21.0"
  },
  "author": {
    "name": "Manuel Fernandez",
    "email": "manferlo81@gmail.com"
  },
  "homepage": "https://github.com/manferlo81/rollup-plugin-strip-shebang#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/manferlo81/rollup-plugin-strip-shebang.git"
  },
  "bugs": {
    "url": "https://github.com/manferlo81/rollup-plugin-strip-shebang/issues"
  },
  "license": "MIT"
}
