fastgeotoolkit
Version:
High-performance geospatial analysis framework for route density mapping
88 lines (87 loc) • 2.43 kB
JSON
{
"name": "fastgeotoolkit",
"version": "0.2.3",
"description": "High-performance geospatial analysis framework for route density mapping",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"wasm/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"build:wasm": "wasm-pack build --target web --out-dir ../dist/javascript/wasm",
"test": "jest",
"test:node": "jest --testPathPattern=node",
"test:browser": "jest --testPathPattern=browser",
"test:watch": "jest --watch",
"docs": "typedoc --options typedoc.json",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"prepublishOnly": "npm run build",
"publish:dual": "bash publish-dual.sh",
"publish:npm": "npm publish --access public",
"publish:github": "npm publish --registry https://npm.pkg.github.com"
},
"keywords": [
"gps",
"geospatial",
"trajectory",
"route-density",
"heatmap",
"gpx",
"fit",
"polyline",
"webassembly",
"typescript"
],
"author": "a0a7",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/a0a7/fastgeotoolkit.git"
},
"homepage": "https://github.com/a0a7/fastgeotoolkit",
"bugs": {
"url": "https://github.com/a0a7/fastgeotoolkit/issues"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.5.0",
"@types/puppeteer": "^7.0.4",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"babel-jest": "^30.0.5",
"eslint": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^3.0.0",
"puppeteer": "^21.0.0",
"rollup": "^3.0.0",
"rollup-plugin-dts": "^6.0.0",
"ts-jest": "^29.1.0",
"tslib": "^2.8.1",
"typedoc": "^0.25.13",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./wasm": {
"import": "./wasm/fastgeotoolkit.js",
"types": "./wasm/fastgeotoolkit.d.ts"
}
}
}