{
  "name": "react-datatrans-light-box",
  "version": "4.0.2",
  "description": "Datatrans Lightbox component for React apps",
  "main": "lib/index.js",
  "module": "lib/index.mjs",
  "types": "lib/index.d.ts",
  "keywords": [
    "react",
    "datatrans",
    "lightbox"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/datatrans/react-datatrans-light-box.git"
  },
  "homepage": "https://www.datatrans.ch",
  "email": "support@datatrans.ch",
  "author": "Datatrans AG",
  "license": "MIT",
  "scripts": {
    "test": "npm run lint && npm run build",
    "build": "tsup",
    "watch": "tsup --watch",
    "lint": "eslint ./src --ext .ts,.tsx",
    "example:start": "vite example"
  },
  "peerDependencies": {
    "react": ">=16"
  },
  "devDependencies": {
    "@types/prop-types": "^15.7.5",
    "@types/react": "^18.2.0",
    "@typescript-eslint/parser": "^5.59.2",
    "eslint": "8.39.0",
    "eslint-plugin-react": "^7.32.2",
    "prop-types": "^15.6.0",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "tsup": "^8.5.0",
    "typescript": "5.0.4",
    "vite": "^7.1.12"
  },
  "tsup": {
    "entry": [
      "src/index.ts"
    ],
    "outDir": "lib",
    "format": [
      "cjs",
      "esm"
    ],
    "sourcemap": true,
    "clean": true,
    "minify": false,
    "dts": true,
    "target": [
      "chrome110",
      "firefox110",
      "safari16"
    ],
    "external": [
      "react",
      "prop-types"
    ]
  }
}
