{
  "name": "@maplat/transform",
  "private": false,
  "publishConfig": {
    "access": "public"
  },
  "version": "0.5.3",
  "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",
      "browser": "./dist/maplat_transform.umd.js",
      "import": "./dist/maplat_transform.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.2",
    "@maplat/tin": "0.14.0",
    "@types/geojson": "^7946.0.16",
    "@types/node": "^25.5.1",
    "@typescript-eslint/eslint-plugin": "^8.58.0",
    "@typescript-eslint/parser": "^8.58.0",
    "@vitest/coverage-v8": "^3.2.4",
    "cross-env": "^10.1.0",
    "eslint": "^9.39.2",
    "eslint-config-prettier": "^10.1.8",
    "jest-matcher-deep-close-to": "^3.0.2",
    "jsdom": "^27.4.0",
    "prettier": "^3.7.4",
    "typescript": "^5.9.3",
    "vite": "^7.3.0",
    "vite-plugin-dts": "^4.5.4",
    "vitest": "^3.2.4"
  },
  "dependencies": {
    "@turf/turf": "^7.3.1"
  },
  "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"
  }
}