{
  "name": "@gmap-vue/v3",
  "version": "2.2.0",
  "description": "This is a google map component for Vue.js, updated for Vue 2 compatibility",
  "type": "module",
  "main": "dist/main.umd.js",
  "module": "dist/main.es.js",
  "types": "dist/types/src/main.d.ts",
  "unpkg": "dist/main.umd.js",
  "jsdelivr": "dist/main.umd.js",
  "browser": {
    "./sfc": "dist/components"
  },
  "engines": {
    "node": ">=12",
    "npm": ">6"
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/types/src/main.d.ts",
        "default": "./dist/main.es.js"
      },
      "require": {
        "types": "./dist/types/src/main.d.ts",
        "default": "./dist/main.umd.js"
      }
    },
    "./types": {
      "import": {
        "types": "./dist/types/src/types/index.d.ts"
      },
      "require": {
        "types": "./dist/types/src/types/index.d.ts"
      }
    },
    "./keys": {
      "import": {
        "types": "./dist/types/src/keys/index.d.ts",
        "default": "./dist/keys.es.js"
      },
      "require": {
        "types": "./dist/types/src/keys/index.d.ts",
        "default": "./dist/keys.cjs.js"
      }
    },
    "./interfaces": {
      "import": {
        "types": "./dist/types/src/interfaces/index.d.ts"
      },
      "require": {
        "types": "./dist/types/src/interfaces/index.d.ts"
      }
    },
    "./composables": {
      "import": {
        "types": "./dist/types/src/composables/index.d.ts",
        "default": "./dist/composables.es.js"
      },
      "require": {
        "types": "./dist/types/src/composables/index.d.ts",
        "default": "./dist/composables.cjs.js"
      }
    },
    "./components": {
      "import": {
        "types": "./dist/types/src/components/index.d.ts",
        "default": "./dist/src/components.cjs.js"
      },
      "require": {
        "types": "./dist/types/src/components/index.d.ts",
        "default": "./dist/src/components.es.js"
      }
    },
    "./dist/style.css": {
      "import": "./dist/style.css",
      "require": "./dist/style.css"
    }
  },
  "files": [
    "dist",
    "dist/*.css"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "clean:build": "rimraf ./dist && rimraf ./build && rimraf ./types",
    "dev": "cpx ./cypress/runner/.env ./ --verbose && vite",
    "dev:e2e": "pnpm run build && vite --config cypress/runner/vite.config.js",
    "preview": "vite preview --port 4173",
    "build": "vite build",
    "build:dev": "vite build --mode development",
    "tsc:build": "tsc --project tsconfig.app.json",
    "vite:build": "run-p type-check build",
    "type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
    "type-gen": "vue-tsc -p tsconfig.app.json --declaration --emitDeclarationOnly",
    "test": "vitest",
    "test:ci": "vitest run",
    "test:unit": "vitest --environment jsdom",
    "coverage": "vitest run --coverage",
    "test:e2e": "cypress install && start-server-and-test test:e2e:vite:server http://localhost:4173/ 'pnpm exec cypress open --e2e'",
    "test:e2e:ci": "cypress install && start-server-and-test test:e2e:vite:server http://localhost:4173/ 'pnpm exec cypress run --e2e'",
    "test:e2e:build": "pnpm run build && vite build --config cypress/runner/vite.config.mts",
    "test:e2e:preview": "vite preview --config cypress/runner/vite.config.mts",
    "test:e2e:vite:server": "pnpm run test:e2e:build && pnpm run test:e2e:preview",
    "test:e2e:node:server": "pnpm run test:e2e:build && node cypress/runner/runner.cjs",
    "lint": "prettier --write ./src && eslint . --fix",
    "lint-staged": "lint-staged",
    "emulate:package": "rimraf ./.pack && pnpm run build && cpx './dist/**/*.{js,mjs,css,ts,vue}' './.pack/dist' --verbose && cpx './CHANGELOG.md' './.pack' --verbose && cpx './LICENSE.md' './.pack' --verbose && cpx './package.json' './.pack' --verbose",
    "release": "semantic-release"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/diegoazh/gmap-vue.git"
  },
  "bugs": {
    "url": "https://github.com/diegoazh/gmap-vue/issues"
  },
  "homepage": "https://github.com/diegoazh/gmap-vue#readme",
  "dependencies": {
    "@googlemaps/markerclusterer": "^2.5.3",
    "fast-deep-equal": "^3.1.3",
    "mitt": "^3.0.1",
    "vue": "^3.5.13"
  },
  "devDependencies": {
    "@eslint/js": "^9.15.0",
    "@rushstack/eslint-patch": "^1.10.4",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@tsconfig/node22": "^22.0.0",
    "@types/eslint__js": "^8.42.3",
    "@types/google.maps": "^3.58.1",
    "@types/jsdom": "^21.1.7",
    "@types/lodash.throttle": "^4.1.9",
    "@types/node": "^22.9.1",
    "@vitejs/plugin-vue": "^5.2.0",
    "@vitejs/plugin-vue-jsx": "^4.1.0",
    "@vitest/coverage-c8": "^0.33.0",
    "@vitest/coverage-istanbul": "^2.1.5",
    "@vitest/coverage-v8": "^2.1.5",
    "@vue/eslint-config-prettier": "^10.1.0",
    "@vue/eslint-config-typescript": "^14.1.3",
    "@vue/test-utils": "^2.4.6",
    "@vue/tsconfig": "^0.6.0",
    "cpx": "^1.5.0",
    "cypress": "^13.16.0",
    "cypress-plugin-tab": "^1.0.5",
    "dotenv": "^16.4.5",
    "eslint": "^9.15.0",
    "eslint-plugin-cypress": "^4.1.0",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-vue": "^9.31.0",
    "gh-pages": "^6.2.0",
    "globals": "^15.12.0",
    "happy-dom": "^15.11.6",
    "jsdom": "^25.0.1",
    "lint-staged": "^15.2.10",
    "lodash.throttle": "^4.1.1",
    "npm-run-all": "^4.1.5",
    "prettier": "^3.3.3",
    "rimraf": "^6.0.1",
    "sanitize-filename": "^1.6.3",
    "semantic-release": "^24.2.0",
    "semantic-release-cli": "^5.4.6",
    "start-server-and-test": "^2.0.8",
    "stylus": "^0.64.0",
    "typescript": "~5.6.3",
    "typescript-eslint": "^8.15.0",
    "vite": "^5.4.11",
    "vite-plugin-dts": "^4.3.0",
    "vite-plugin-vue-devtools": "^7.6.4",
    "vitest": "^2.1.5",
    "vue-eslint-parser": "^9.4.3",
    "vue-tsc": "^2.1.10"
  },
  "author": "Diego A. Zapata Häntsch, Daniel Sim, Guillaume Leclerc",
  "license": "MIT"
}
