UNPKG

osm-to-svg

Version:

Convert OpenStreetMap (OSM) data to SVG.

62 lines (61 loc) 1.41 kB
{ "name": "osm-to-svg", "version": "0.1.5", "main": "dist/index.js", "repository": { "type": "git", "url": "https://github.com/piLeoni/osm-to-svg" }, "bin": { "osm-to-svg": "dist/bin/cli.js", "osm2svg": "dist/bin/cli.js" }, "keywords": [ "svg", "geojson", "openstreetmaps", "osm", "geography", "gis", "cartography" ], "types": "dist/index.d.ts", "files": [ "dist" ], "scripts": { "build": "rm -rf dist && tsc", "example": "tsc && node dist/example.js", "lint": "eslint .", "release:major": "npm version major", "release:minor": "npm version minor", "release:patch": "npm version patch" }, "license": "MIT", "devDependencies": { "@eslint/js": "^9.22.0", "@types/jsdom": "^21.1.7", "@types/node": "^22.13.10", "@types/proj4": "^2.5.6", "eslint": "^9.22.0", "globals": "^16.0.0", "typescript": "^5.8.2", "typescript-eslint": "^8.27.0" }, "dependencies": { "@turf/turf": "^7.2.0", "@types/convert-units": "^2.3.11", "@types/xml-escape": "^1.1.3", "@types/yargs": "^17.0.33", "axios": "^1.8.3", "convert-units": "^2.3.4", "geojson": "^0.5.0", "geojson2svg": "^2.0.2", "jsdom": "^26.0.0", "osmtogeojson": "^3.0.0-beta.5", "proj4": "^2.15.0", "xml-escape": "^1.1.0", "xmlbuilder2": "^3.1.1", "yargs": "^17.7.2" } }