{
  "name": "simplify-geojson-visvalingam",
  "version": "1.3.4",
  "description": "GeoJSON simplification library using the Visvalingam algorithm for efficient point reduction and geometry preservation.",
  "author": "Alexander Kolobov",
  "license": "MIT",
  "keywords": [
    "geojson",
    "simplification",
    "simplify",
    "visvalingam",
    "visvalingam-whyatt",
    "geometry",
    "gis",
    "geospatial",
    "geo",
    "map"
  ],
  "bugs": {
    "url": "https://github.com/iamaleko/simplify-geojson-visvalingam/issues"
  },
  "homepage": "https://github.com/iamaleko/simplify-geojson-visvalingam#readme",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    "import": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "require": {
      "types": "./dist/index.d.cts",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "watch": "tsup --watch",
    "test": "mocha",
    "lint": "eslint . --max-warnings=0",
    "lint:fix": "eslint . --fix",
    "format": "prettier '**/*.{ts,js,json}' --ignore-path .prettierignore --write",
    "build": "npm run lint && npm run test && tsup",
    "playground": "npx tsx watch playground/index.ts"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/iamaleko/simplify-geojson-visvalingam.git"
  },
  "devDependencies": {
    "@types/assert": "^1.5.11",
    "@types/geojson": "^7946.0.16",
    "@types/mocha": "^10.0.10",
    "eslint": "^9.25.0",
    "eslint-config-prettier": "^10.1.2",
    "eslint-plugin-prettier": "^5.2.6",
    "mocha": "^11.1.0",
    "prettier": "3.5.3",
    "tsup": "^8.4.0",
    "tsx": "^4.19.3",
    "typescript": "^5.8.3",
    "typescript-eslint": "^8.30.1"
  }
}
