@alvarosilva/hex-address
Version:
Convert GPS coordinates to memorable hex addresses using H3
82 lines • 2.14 kB
JSON
{
"name": "@alvarosilva/hex-address",
"version": "1.4.0",
"description": "Convert GPS coordinates to memorable hex addresses using H3",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"browser": "./dist/browser.browser.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"browser": "./dist/browser.browser.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run export-configs && tsup",
"build:watch": "npm run export-configs && tsup --watch",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"type-check": "tsc --noEmit",
"clean": "rimraf dist",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint && npm run build",
"export-configs": "python3 ../../scripts/configs/generate_all_configs.py"
},
"keywords": [
"h3",
"gps",
"coordinates",
"syllable",
"address",
"geospatial",
"mapping",
"location",
"typescript"
],
"author": "Álvaro Silva",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/alvasilvao/hex-address.git",
"directory": "javascript"
},
"bugs": {
"url": "https://github.com/alvasilvao/hex-address/issues"
},
"homepage": "https://hex-address-app.vercel.app/",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"h3-js": "~4.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
},
"publishConfig": {
"access": "public"
}
}