{
  "name": "@posthog/webpack-plugin",
  "version": "1.4.16",
  "description": "Webpack plugin for Posthog 🦔",
  "repository": {
    "type": "git",
    "url": "https://github.com/PostHog/posthog-js.git",
    "directory": "packages/webpack-plugin"
  },
  "author": {
    "name": "PostHog",
    "email": "engineering@posthog.com",
    "url": "https://posthog.com"
  },
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "dependencies": {
    "@posthog/cli": "~0.7.3",
    "@posthog/core": "1.28.0",
    "@posthog/plugin-utils": "1.1.1"
  },
  "files": [
    "dist",
    "src"
  ],
  "peerDependencies": {
    "webpack": "^5"
  },
  "devDependencies": {
    "@rslib/core": "0.10.6",
    "jest": "29.7.0",
    "webpack": "^5",
    "@posthog-tooling/tsconfig-base": "1.1.1"
  },
  "exports": {
    ".": {
      "require": "./dist/index.js",
      "import": "./dist/index.mjs",
      "types": "./dist/index.d.ts"
    }
  },
  "scripts": {
    "clean": "rimraf dist",
    "lint": "eslint src",
    "lint:fix": "eslint src --fix",
    "build": "rslib build",
    "test:unit": "jest --passWithNoTests",
    "dev": "rslib build --watch",
    "package": "pnpm pack --out $PACKAGE_DEST/%s.tgz"
  }
}