{
  "$schema": "https://json.schemastore.org/package.json",
  "name": "geojson-precision-ts",
  "version": "1.5.0",
  "license": "MIT",
  "type": "module",
  "description": "Remove meaningless precision from GeoJSON.",
  "keywords": [
    "geojson",
    "precision",
    "geojson precision"
  ],
  "author": {
    "name": "Logue",
    "email": "logue@hotmail.co.jp",
    "url": "https://logue.dev"
  },
  "contributors": [
    {
      "name": "John J Czaplewski",
      "email": "jczaplew@gmail.com"
    },
    {
      "name": "Frank Rowe",
      "email": "fsrowe@gmail.com",
      "url": "http://frankrowe.org"
    },
    {
      "name": "Andrew Harvey",
      "email": "andrew@alantgeo.com.au",
      "url": "https://www.alantgeo.com.au/"
    },
    {
      "name": "Matthew Jones",
      "email": "matthew@vitaler.com"
    }
  ],
  "homepage": "https://github.com/logue/geojson-precision",
  "repository": {
    "type": "git",
    "url": "git@github.com:logue/geojson-precision.git"
  },
  "bugs": {
    "url": "https://github.com/logue/geojson-precision/issues"
  },
  "files": [
    "dist",
    "bin"
  ],
  "main": "dist/index.umd.js",
  "module": "dist/index.es.js",
  "jsdelivr": "dist/index.iife.js",
  "unpkg": "dist/index.iife.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.es.js",
      "types": "./dist/index.d.ts"
    }
  },
  "bin": {
    "geojson-precision": "./bin/geojson-precision"
  },
  "engines": {
    "node": ">=22.22.0"
  },
  "packageManager": "pnpm@11.1.2",
  "sideEffects": false,
  "scripts": {
    "test": "vitest",
    "clean": "rimraf node_modules/.vite",
    "type-check": "tsc --noEmit --composite false",
    "build": "run-p type-check build-only",
    "build:analyze": "vite build --mode=analyze",
    "build:clean": "rimraf dist",
    "build-only": "vite build",
    "lint": "eslint --fix --cache --cache-location ./node_modules/.vite/vite-plugin-eslint && prettier . --write",
    "prepare": "husky",
    "version": "auto-changelog -p && git add CHANGELOG.md"
  },
  "dependencies": {
    "commander": "^14.0.3"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@tsconfig/node-lts": "^24.0.0",
    "@types/geojson": "^7946.0.16",
    "@types/node": "^25.8.0",
    "@typescript-eslint/eslint-plugin": "^8.59.3",
    "ajv": "^8.20.0",
    "eslint": "^10.4.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-import-resolver-alias": "^1.1.2",
    "eslint-import-resolver-custom-alias": "^1.3.2",
    "eslint-import-resolver-typescript": "^4.4.4",
    "eslint-plugin-import-x": "^4.16.2",
    "eslint-plugin-tsdoc": "^0.5.2",
    "geojson-schema": "^1.0.5",
    "globals": "^17.6.0",
    "husky": "^9.1.7",
    "jiti": "^2.7.0",
    "lint-staged": "^17.0.5",
    "npm-run-all": "^4.1.5",
    "prettier": "^3.8.3",
    "rimraf": "^6.1.3",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.59.3",
    "vite": "^8.0.13",
    "vite-plugin-checker": "^0.13.0",
    "vite-plugin-dts": "^5.0.0",
    "vitest": "^4.1.6"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{js,ts,json,htm,html,md}": "eslint --fix --cache --cache-location ./node_modules/.vite/vite-plugin-eslint",
    "*": "prettier -w -u"
  }
}
