UNPKG

geo-search-utils

Version:

A powerful TypeScript utility that enables you to use Google Maps features without requiring an API key! Extract location data, search addresses, and process Google Maps URLs - all without authentication. Supports multiple URL patterns, coordinate extract

53 lines (52 loc) 1.51 kB
{ "name": "geo-search-utils", "version": "1.0.0", "description": "A powerful TypeScript utility that enables you to use Google Maps features without requiring an API key! Extract location data, search addresses, and process Google Maps URLs - all without authentication. Supports multiple URL patterns, coordinate extraction, and address search functionality using OpenStreetMap.", "main": "dist/index.cjs", "module": "dist/index.mjs", "types": "dist/index.d.ts", "files": [ "dist" ], "exports": { "import": "./dist/index.mjs", "require": "./dist/index.cjs" }, "scripts": { "dev": "tsup src/index.ts --dts --format esm,cjs --out-dir dist --watch", "build": "tsup src/index.ts --dts --format esm,cjs --out-dir dist", "test": "ts-node test/index.ts" }, "keywords": [ "google-maps", "location", "coordinates", "geocoding", "address-search", "url-parser", "typescript", "no-api-key", "maps", "geolocation" ], "author": "@Abhii5496", "license": "MIT", "devDependencies": { "@tsconfig/node18": "^18.2.4", "@types/node": "^22.15.21", "ts-node": "^10.9.2", "tsup": "^8.5.0", "typescript": "^5.8.3" }, "directories": { "test": "test" }, "repository": { "type": "git", "url": "git+https://github.com/Abhii5496/location-utils.git" }, "bugs": { "url": "https://github.com/Abhii5496/location-utils/issues" }, "homepage": "https://github.com/Abhii5496/location-utils#readme" }