{
  "name": "vue-toastflow",
  "author": "adrianjanocko",
  "description": "Framework-agnostic toast engine with a Vue 3 renderer. Typed core, smooth stack animations, CSS-first theming, and full control over layout and behavior.",
  "keywords": [
    "notifications",
    "typescript",
    "vue",
    "toastr",
    "toast",
    "notification",
    "toast-notifications",
    "toaster",
    "toastify"
  ],
  "license": "MIT",
  "homepage": "https://toastflow.top/",
  "repository": {
    "type": "git",
    "url": "https://github.com/adrianjanocko/toastflow.git",
    "directory": "packages/vue"
  },
  "version": "1.1.9",
  "main": "./dist/toastflow.umd.js",
  "module": "./dist/toastflow.es.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/toastflow.es.js"
      },
      "require": {
        "types": "./dist/index.d.ts",
        "default": "./dist/toastflow.umd.js"
      }
    },
    "./styles.css": "./dist/vue-toastflow.css",
    "./src/styles.css": "./src/styles.css"
  },
  "files": [
    "dist",
    "src",
    "README.md"
  ],
  "peerDependencies": {
    "vue": "^3.4.0"
  },
  "dependencies": {
    "toastflow-core": "^1.2.1"
  },
  "devDependencies": {
    "@vitejs/plugin-vue": "^6.0.2",
    "typescript": "^5.9.3",
    "vite": "^7.2.4",
    "vite-plugin-css-injected-by-js": "^4.0.1",
    "vite-plugin-dts": "^4.5.4",
    "vitest": "^4.0.13",
    "vue": "^3.5.24"
  },
  "scripts": {
    "build": "vite build && node -e \"require('fs').copyFileSync('src/styles.css','dist/vue-toastflow.css')\"",
    "test": "vitest"
  }
}