{
  "name": "sonner-web-component",
  "version": "0.1.4",
  "type": "module",
  "description": "An opinionated toast web component, a port of @emilkowalski's Sonner.",
  "author": "Josh Thomas <josh@joshthomas.dev>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/joshuadavidthomas/sonner-web-component.git"
  },
  "keywords": [
    "toast",
    "notifications",
    "web-component",
    "custom-element",
    "sonner"
  ],
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "files": [
    "dist"
  ],
  "homepage": "https://sonner-web-component.joshthomas.dev",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./bridges/alpine": {
      "types": "./dist/bridges/alpine.d.ts",
      "import": "./dist/bridges/alpine.js",
      "default": "./dist/bridges/alpine.js"
    },
    "./bridges/fetch": {
      "types": "./dist/bridges/fetch.d.ts",
      "import": "./dist/bridges/fetch.js",
      "default": "./dist/bridges/fetch.js"
    },
    "./bridges/htmx": {
      "types": "./dist/bridges/htmx.d.ts",
      "import": "./dist/bridges/htmx.js",
      "default": "./dist/bridges/htmx.js"
    }
  },
  "sideEffects": true,
  "scripts": {
    "build": "rm -rf dist && bun build src/index.ts src/bridges/alpine.ts src/bridges/fetch.ts src/bridges/htmx.ts --outdir dist --sourcemap=linked --splitting && tsc --emitDeclarationOnly",
    "dev": "bun build src/index.ts src/bridges/alpine.ts src/bridges/fetch.ts src/bridges/htmx.ts --outdir dist --sourcemap=linked --splitting --watch",
    "prepublishOnly": "bun run build",
    "typecheck": "tsc --noEmit",
    "web:dev": "wrangler dev",
    "web:deploy": "wrangler deploy"
  },
  "devDependencies": {
    "typescript": "^5.7.0",
    "wrangler": "^4.76.0"
  }
}
