{
  "name": "vue-sweetalert2",
  "version": "5.0.5",
  "description": "Simple Vue sweetalert2 package",
  "main": "dist/vue-sweetalert.cjs.js",
  "module": "dist/vue-sweetalert.es.js",
  "browser": "dist/vue-sweetalert.umd.js",
  "types": "dist/index.d.ts",
  "files": [
    "src",
    "nuxt",
    "dist"
  ],
  "scripts": {
    "build": "vite build && tsc",
    "test": "vitest run",
    "test:watch": "vitest --watch",
    "test:coveralls": "vitest run --coverage && cat ./coverage/lcov.info | coveralls",
    "changelog": "auto-changelog git add ./CHANGELOG.md",
    "prepublishOnly": "npm run test && npm run build && npm run changelog",
    "lint:prettier": "prettier --write src/*.ts",
    "lint:ts": "tsc --noEmit --skipLibCheck",
    "lint": "npm run lint:prettier && npm run lint:ts"
  },
  "keywords": [
    "sweetalert",
    "sweetalert2",
    "alert",
    "prompt",
    "ssr"
  ],
  "author": "Aleksey Pivkin @avil13",
  "license": "MIT",
  "homepage": "https://avil13.github.io/vue-sweetalert2/",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/avil13/vue-sweetalert2.git"
  },
  "nodemonConfig": {
    "watch": [
      "src"
    ],
    "exec": "npm run prepublish",
    "delay": 2500
  },
  "dependencies": {
    "sweetalert2": "11.x"
  },
  "peerDependencies": {
    "vue": "*"
  },
  "devDependencies": {
    "@vue/test-utils": "^1.3.0",
    "auto-changelog": "^2.4.0",
    "jsdom": "^19.0.0",
    "vite": "^2.9.8",
    "vitest": "^0.12.3",
    "vue": "*",
    "vue-template-compiler": "^2.6.14"
  }
}
