UNPKG

@maplat/transform

Version:

A JavaScript library that performs coordinate transformation between two plane coordinate systems using transformation definitions generated by Maplat.

85 lines 2.5 kB
{ "name": "@maplat/transform", "private": false, "publishConfig": { "access": "public" }, "version": "1.0.0", "description": "A JavaScript library that performs coordinate transformation between two plane coordinate systems using transformation definitions generated by Maplat.", "type": "module", "engines": { "pnpm": ">=9", "node": ">=20" }, "module": "./dist/maplat_transform.js", "browser": "./dist/maplat_transform.umd.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/maplat_transform.js", "browser": "./dist/maplat_transform.umd.js", "default": "./dist/maplat_transform.js" } }, "files": [ "dist", "src", "README.md", "README.ja.md" ], "repository": { "type": "git", "url": "git+https://github.com/code4history/MaplatTransform.git" }, "author": "Code for History", "license": "Apache-2.0", "bugs": { "url": "https://github.com/code4history/MaplatTransform/issues" }, "homepage": "https://github.com/code4history/MaplatTransform/wiki", "keywords": [ "projection", "GIS", "Maplat", "MaplatTransform" ], "devDependencies": { "@eslint/js": "^9.39.5", "@maplat/tin": "0.14.0", "@types/geojson": "^7946.0.16", "@types/node": "^25.5.2", "@typescript-eslint/eslint-plugin": "^8.66.0", "@typescript-eslint/parser": "^8.66.0", "@vitest/coverage-v8": "^3.2.6", "cross-env": "^10.1.0", "eslint": "^9.39.5", "eslint-config-prettier": "^10.1.8", "jest-matcher-deep-close-to": "^3.0.2", "jsdom": "^30.0.1", "prettier": "^3.9.6", "typescript": "^5.9.3", "vite": "^7.3.5", "vite-plugin-dts": "^4.5.4", "vitest": "^3.2.6" }, "dependencies": { "@turf/turf": "^7.4.0" }, "scripts": { "generate:submaps": "node scripts/generate-submaps-compiled.mjs", "dev": "vite --host", "build": "pnpm run typecheck && cross-env BUILD_MODE=package vite build", "typecheck": "tsc --noEmit --allowImportingTsExtensions", "build:demo": "vite build", "deploy": "pnpm run build:demo", "test": "vitest run", "test:watch": "vitest", "coverage": "vitest run --coverage", "lint": "eslint src tests", "version:bump": "node scripts/bump-version.js", "version:sync": "node scripts/sync-version.js", "publish:npm": "node scripts/publish-npm.js", "publish:npm:dry": "node scripts/publish-npm.js --dry-run" } }