{
  "name": "vue-global-events",
  "type": "module",
  "packageManager": "pnpm@8.6.5",
  "version": "3.0.1",
  "description": "Register global events using vue template shortcuts",
  "main": "./dist/index.mjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "unpkg": "./dist/index.js",
  "jsdelivr": "./dist/index.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.cjs",
      "import": "./dist/index.mjs"
    }
  },
  "sideEffects": false,
  "files": [
    "dist",
    "LICENSE",
    "README.md"
  ],
  "keywords": [
    "vue",
    "events",
    "global",
    "window",
    "document",
    "shortcuts",
    "anywhere",
    "listeners"
  ],
  "author": {
    "name": "Eduardo San Martin Morote",
    "email": "posva13@gmail.com"
  },
  "contributors": [
    {
      "name": "Eduardo San Martin Morote",
      "email": "posva13@gmail.com"
    },
    {
      "name": "Damian Dulisz",
      "email": "damian.dulisz@gmail.com"
    }
  ],
  "license": "MIT",
  "devDependencies": {
    "@posva/prompts": "^2.4.4",
    "@types/lodash-es": "^4.17.7",
    "@vitejs/plugin-vue": "^4.2.3",
    "@vitest/coverage-v8": "^0.32.2",
    "@vue/compiler-sfc": "^3.3.4",
    "@vue/test-utils": "^2.4.0",
    "@vueuse/core": "^10.2.0",
    "chalk": "^5.2.0",
    "conventional-changelog-cli": "^2.2.2",
    "execa": "^7.1.1",
    "happy-dom": "^9.20.3",
    "lint-staged": "^13.2.3",
    "lodash-es": "^4.17.21",
    "minimist": "^1.2.8",
    "p-series": "^3.0.0",
    "prettier": "^2.8.8",
    "semver": "^7.5.3",
    "typescript": "^5.1.5",
    "unbuild": "^1.2.1",
    "vite": "^4.3.9",
    "vitest": "^0.32.2",
    "vue": "^3.3.4",
    "yorkie": "^2.0.0"
  },
  "gitHooks": {
    "pre-commit": "lint-staged",
    "commit-msg": "node scripts/verifyCommit.mjs"
  },
  "lint-staged": {
    "*.js": [
      "prettier --write"
    ],
    "*.ts?(x)": [
      "prettier --parser=typescript --write"
    ]
  },
  "peerDependencies": {
    "vue": "^3.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/shentao/vue-global-events.git"
  },
  "bugs": {
    "url": "https://github.com/shentao/vue-global-events/issues"
  },
  "homepage": "https://github.com/shentao/vue-global-events#readme",
  "dependencies": {
    "pkg-types": "^1.0.3"
  },
  "scripts": {
    "build": "unbuild",
    "dev": "vite",
    "release": "node scripts/release.mjs",
    "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
    "lint": "prettier -c \"{src,scripts}/**/*.[jtm]s?(x)\" \"*.[mt]s\"",
    "lint:fix": "pnpm run lint --write",
    "test:types": "tsc --noEmit",
    "test:unit": "vitest --coverage",
    "test": "pnpm run test:types && pnpm run lint && pnpm run test:unit run && pnpm run build"
  }
}