geobuf-merge
Version:
Merge multiple geobuf-encoded geometries together
71 lines • 1.97 kB
JSON
{
"name": "geobuf-merge",
"version": "1.0.1",
"description": "Merge multiple geobuf-encoded geometries together",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"author": "Alberto Rico",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alrico88/geobuf-merge"
},
"sideEffects": false,
"devDependencies": {
"@types/geobuf": "^3.0.1",
"@types/geojson": "^7946.0.10",
"@types/pbf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"@vitest/coverage-c8": "^0.25.6",
"c8": "^7.11.2",
"coveralls": "^3.1.1",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^7.0.4",
"tslib": "^2.4.1",
"tsup": "^6.5.0",
"typedoc": "^0.22.15",
"typedoc-plugin-markdown": "^3.12.1",
"typescript": "^4.9.4",
"vitest": "^0.25.6"
},
"keywords": [
"geobuf",
"merge",
"geojson",
"featurecollection"
],
"husky": {
"hooks": {
"pre-commit": "pnpm run lint"
}
},
"dependencies": {
"@mapbox/geojson-normalize": "^0.0.1",
"geobuf": "^3.0.2",
"pbf": "^3.2.1"
},
"scripts": {
"dev": "pnpm run build -- --watch src",
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"test": "vitest run",
"coverage": "vitest run --coverage",
"lint": "eslint --cache --fix --ignore-path .gitignore --ext .ts,.js src",
"docs": "typedoc src/index.ts --readme README.md --gitRevision master",
"prepublish": "pnpm run build",
"coveralls": "vitest run --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
}
}