UNPKG

geos.js

Version:

an easy-to-use JavaScript wrapper over WebAssembly build of GEOS

63 lines 1.47 kB
{ "name": "geos.js", "version": "0.1.4", "description": "an easy-to-use JavaScript wrapper over WebAssembly build of GEOS", "keywords": [ "geos", "geo", "gis", "geojson", "wkt", "wkb", "wasm", "emscripten", "shapely", "turf" ], "author": "Karol Leśniak", "license": "(MIT OR LGPL-2.1-only)", "bugs": { "url": "https://github.com/kajkal/geos.js/issues" }, "homepage": "https://github.com/kajkal/geos.js", "repository": { "type": "git", "url": "git+https://github.com/kajkal/geos.js.git" }, "type": "module", "exports": { ".": { "import": { "types": "./dist/esm/index.d.mts", "default": "./dist/esm/index.mjs" }, "default": "./src/index.mts" }, "./geos_js.wasm": "./dist/geos_js.wasm", "./package.json": "./package.json" }, "files": [ "dist", "src" ], "devDependencies": { "@rollup/plugin-replace": "^6.0.2", "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-typescript": "^12.1.2", "@types/geojson": "^7946.0.16", "@types/node": "^22.15.19", "c8": "^10.1.3", "chalk": "^5.4.1", "rollup": "^4.41.0", "rollup-plugin-dts": "^6.2.1", "tslib": "^2.8.1", "tsx": "^4.20.3", "typescript": "^5.8.3", "undici": "^7.9.0" }, "scripts": { "build": "rollup -c rollup.config.mjs", "test": "tsx --expose-gc --test", "test-coverage": "c8 tsx --expose-gc --test" } }