{
  "name": "pure-web-bottom-sheet",
  "version": "0.7.0",
  "description": "A performant, lightweight, and accessible bottom sheet web component powered by CSS scroll snap and CSS scroll-driven animations. Works with any framework, supports SSR, multiple snap points, and nested scrolling mode.",
  "keywords": [
    "bottom sheet",
    "modal",
    "drawer",
    "popup",
    "dialog",
    "overlay",
    "web component",
    "custom element",
    "vanilla js",
    "react",
    "vue",
    "typescript",
    "css scroll snap",
    "scroll-driven animations",
    "snap points",
    "accessible",
    "accessibility"
  ],
  "author": "Vili Ketonen",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/viliket/pure-web-bottom-sheet/issues"
  },
  "homepage": "https://github.com/viliket/pure-web-bottom-sheet",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/viliket/pure-web-bottom-sheet.git"
  },
  "type": "module",
  "main": "./dist/web.client.js",
  "exports": {
    ".": {
      "import": "./dist/web.client.js",
      "require": "./dist/web.client.js",
      "types": "./dist/web/index.client.d.ts"
    },
    "./ssr": {
      "import": "./dist/web.ssr.js",
      "require": "./dist/web.ssr.js",
      "types": "./dist/web/index.ssr.d.ts"
    },
    "./react": {
      "import": "./dist/react/index.js",
      "require": "./dist/react/index.js",
      "types": "./dist/react/react/index.d.ts"
    },
    "./vue": {
      "import": "./dist/vue/index.js",
      "require": "./dist/vue/index.js",
      "types": "./dist/vue/index.d.ts"
    }
  },
  "types": "./dist/web/index.client.d.ts",
  "typesVersions": {
    "*": {
      "*": [
        "./dist/web/index.client.d.ts"
      ],
      "ssr": [
        "./dist/web/index.ssr.d.ts"
      ],
      "react": [
        "./dist/react/react/index.d.ts"
      ],
      "vue": [
        "./dist/vue/index.d.ts"
      ]
    }
  },
  "files": [
    "dist",
    "package.json",
    "README.md",
    "LICENSE"
  ],
  "workspaces": [
    ".",
    "examples/*"
  ],
  "peerDependencies": {
    "@vue/language-core": "~3.0.10",
    "react": "^19.0.0",
    "vue": "^3.0.0"
  },
  "devDependencies": {
    "@rollup/plugin-terser": "^0.4.4",
    "@rollup/plugin-typescript": "^12.3.0",
    "@types/react": "^19.2.2",
    "@types/wait-on": "^5.3.4",
    "@wdio/cli": "^9.25.0",
    "@wdio/globals": "^9.23.0",
    "@wdio/local-runner": "^9.25.0",
    "@wdio/mocha-framework": "^9.25.0",
    "@wdio/spec-reporter": "^9.25.0",
    "cssnano": "^7.1.1",
    "htmlnano": "^2.1.5",
    "postcss-nesting": "^13.0.2",
    "prettier": "^3.6.2",
    "prettier-plugin-css-order": "^2.1.2",
    "rollup": "^4.52.5",
    "rollup-plugin-esbuild": "^6.2.1",
    "rollup-preserve-directives": "^1.1.3",
    "tslib": "^2.8.1",
    "typescript": "^5.9.3",
    "unplugin-dts": "^1.0.0-beta.6",
    "unplugin-vue": "^7.0.3",
    "wait-on": "^9.0.4"
  },
  "scripts": {
    "clean": "rm -rf dist",
    "build": "npm run clean && rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
    "build:prod": "NODE_ENV=production npm run build",
    "watch": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript --watch",
    "test:format": "prettier . --check",
    "test:types": "tsc --noEmit",
    "test:wdio": "wdio run ./wdio.conf.ts"
  },
  "engines": {
    "node": ">=24.0.0",
    "npm": ">=11.7.0"
  }
}
