{
  "name": "@brackets/vue-toastification",
  "version": "2.0.2",
  "private": false,
  "description": "Toasts for Vue made easy with custom component!",
  "author": "Brackets",
  "scripts": {
    "dev": "MODE=demo yarn vite",
    "prebuild": "rimraf ./dist",
    "build": "yarn build:code && yarn build:tsc",
    "build:code": "MODE=lib vite build",
    "build:tsc": "NODE_ENV=production tsc --emitDeclarationOnly --project tsconfig.build.json",
    "build:demo": "MODE=demo vite build",
    "test:unit": "jest",
    "test": "yarn test:unit",
    "test:watch": "yarn test --watch",
    "lint": "yarn lint:tsc && yarn lint:eslint .",
    "lint:fix": "yarn lint --fix",
    "lint:tsc": "NODE_ENV=production vue-tsc --noEmit",
    "lint:eslint": "NODE_ENV=production eslint --ext vue,ts,tsx",
    "lint:staged": "yarn lint:tsc && yarn lint:eslint --fix",
    "preview": "NODE_ENV=production vite preview --port 3000 demo",
    "prepublishOnly": "yarn lint && yarn build",
    "prepare": "husky install"
  },
  "main": "./dist/index.umd.js",
  "module": "./dist/index.es.js",
  "exports": {
    ".": {
      "import": "./dist/index.es.js",
      "require": "./dist/index.umd.js"
    },
    "./dist/index.css": {
      "import": "./dist/index.css",
      "require": "./dist/index.css"
    }
  },
  "typings": "dist/types/index.d.ts",
  "types": "dist/types/index.d.ts",
  "style": "dist/index.css",
  "files": [
    "src",
    "dist"
  ],
  "sideEffects": true,
  "dependencies": {},
  "devDependencies": {
    "@types/jest": "^27.4.0",
    "@types/lodash.merge": "^4.6.6",
    "@typescript-eslint/eslint-plugin": "^5.10.1",
    "@typescript-eslint/parser": "^5.10.1",
    "@vitejs/plugin-vue": "^2.1.0",
    "@vue/test-utils": "^2.0.0-rc.18",
    "@vue/vue3-jest": "^27.0.0-alpha.4",
    "babel-jest": "^27.4.6",
    "eslint": "^8.8.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-import": "^2.25.4",
    "eslint-plugin-jsx-a11y": "^6.5.1",
    "eslint-plugin-prettier": "^4.0.0",
    "eslint-plugin-vue": "^8.4.0",
    "husky": "^7.0.4",
    "jest": "^27.4.7",
    "lint-staged": "^12.3.2",
    "lodash.merge": "^4.6.2",
    "prettier": "^2.5.1",
    "sass": "^1.49.0",
    "ts-jest": "^27.1.3",
    "typescript": "^4.5.5",
    "vite": "^2.7.13",
    "vue": "^3",
    "vue-tsc": "^0.31.1"
  },
  "lint-staged": {
    "*.{js,jsx,vue,ts,tsx}": [
      "yarn lint:staged"
    ]
  },
  "peerDependencies": {
    "vue": "^3.0.2"
  },
  "bugs": {
    "url": "https://github.com/timoransky/vue-toastification/issues"
  },
  "homepage": "https://github.com/timoransky/vue-toastification#readme",
  "keywords": [
    "vue",
    "notification",
    "toast"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/timoransky/vue-toastification.git"
  }
}
