UNPKG

google-maps-route-creator

Version:

Google Maps Route Creator is a tool that helps you to create a route on Google Maps and calculate the distance between the points.

53 lines (52 loc) 1.36 kB
{ "name": "google-maps-route-creator", "version": "1.0.7", "description": "Google Maps Route Creator is a tool that helps you to create a route on Google Maps and calculate the distance between the points.", "main": "dist/index.js", "scripts": { "build": "tsup", "ci": "npm run build && npm run check-format && npm run check-exports && npm run lint", "format": "prettier --write .", "check-format": "prettier --check .", "check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm", "lint": "tsc", "test": "vitest run", "local-release": "changeset version && changeset publish", "prepublishOnly": "npm run ci" }, "keywords": [ "Google", "Maps", "Routes", "Creator", "Distance", "calculation", "tool" ], "author": "Hakan ATASEVER", "license": "ISC", "type": "module", "files": [ "dist" ], "exports": { "./package.json": "./package.json", ".": { "import": "./dist/index.js", "default": "./dist/index.d.ts" } }, "devDependencies": { "@arethetypeswrong/cli": "^0.17.3", "@changesets/cli": "^2.27.11", "@types/react": "^19.0.7", "prettier": "^3.4.2", "typescript": "^5.7.3", "vitest": "^2.1.8" }, "dependencies": { "@react-google-maps/api": "^2.20.5", "react": "^19.0.0", "tsup": "^8.3.5" } }