{
  "name": "vyrn",
  "version": "5.0.0",
  "description": "A tiny, accessible, dependency-free toast library for React and Next.js",
  "homepage": "https://vyrn.vercel.app/",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vishxly/vyrn.git"
  },
  "bugs": {
    "url": "https://github.com/vishxly/vyrn/issues"
  },
  "main": "dist/index.js",
  "module": "dist/index.esm.js",
  "types": "dist/index.d.ts",
  "sideEffects": [
    "**/*.css"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.esm.js",
      "require": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "src",
    "README.md",
    "INTEGRATION.md",
    "MIGRATION.md",
    "Licence.md"
  ],
  "scripts": {
    "build": "rollup -c && node scripts/add-use-client.js",
    "build:watch": "rollup -c -w",
    "test": "jest",
    "test:watch": "jest --watch",
    "typecheck": "tsc --noEmit",
    "size": "node scripts/size.js",
    "lint": "eslint 'src/**/*.{js,ts,tsx}'",
    "lint:fix": "eslint 'src/**/*.{js,ts,tsx}' --fix",
    "format": "prettier --write 'src/**/*.{js,ts,tsx}'",
    "prepublishOnly": "npm run typecheck && npm test && npm run build && npm run size",
    "example:setup": "npm run build && npm link && cd example && npm install && npm link vyrn",
    "example:dev": "cd example && npm run dev"
  },
  "keywords": [
    "react",
    "nextjs",
    "toast",
    "toaster",
    "notification",
    "snackbar",
    "sonner",
    "accessible",
    "zero-dependency"
  ],
  "author": "Vishal Yadav",
  "license": "MIT",
  "peerDependencies": {
    "react": ">=18.0.0",
    "react-dom": ">=18.0.0"
  },
  "devDependencies": {
    "@testing-library/dom": "^10.4.1",
    "@testing-library/jest-dom": "^6.6.3",
    "@testing-library/react": "^16.3.2",
    "@types/jest": "^27.4.1",
    "@types/react": ">=18.0.0 <20.0.0",
    "@types/react-dom": ">=18.0.0 <20.0.0",
    "@typescript-eslint/eslint-plugin": "^5.13.0",
    "@typescript-eslint/parser": "^5.13.0",
    "eslint": "^8.10.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-react": "^7.29.3",
    "eslint-plugin-react-hooks": "^4.3.0",
    "jest": "^27.5.1",
    "jest-environment-jsdom": "^27.5.1",
    "postcss": "^8.4.49",
    "prettier": "^2.5.1",
    "rollup": "^2.70.0",
    "rollup-plugin-postcss": "^4.0.0",
    "rollup-plugin-terser": "^7.0.2",
    "rollup-plugin-typescript2": "^0.31.0",
    "ts-jest": "^27.1.3",
    "typescript": "^4.5.0"
  }
}
