{
  "$schema": "https://json.schemastore.org/package.json",
  "name": "geojson-offset-ts",
  "version": "0.4.0",
  "license": "MIT",
  "type": "module",
  "description": "Add offset to the coordinates of GeoJSON.",
  "keywords": [
    "geojson",
    "feature",
    "geometry",
    "coordinate",
    "offset"
  ],
  "author": {
    "name": "Logue",
    "email": "logue@hotmail.co.jp",
    "url": "https://logue.dev"
  },
  "contributors": [
    {
      "name": "Haoliang Yu",
      "email": "haholiang.yu@outlook.com"
    }
  ],
  "homepage": "https://github.com/logue/geojson-offset",
  "repository": {
    "type": "git",
    "url": "git@github.com:logue/geojson-offset.git"
  },
  "bugs": {
    "url": "https://github.com/logue/geojson-offset/issues"
  },
  "main": "dist/geojson-offset.umd.js",
  "module": "dist/geojson-offset.es.js",
  "jsdelivr": "dist/geojson-offset.umd.js",
  "unpkg": "dist/geojson-offset.umd.js",
  "types": "dist/geojson-offset.d.ts",
  "exports": {
    ".": {
      "types": "./dist/geojson-offset.d.ts",
      "import": "./dist/geojson-offset.es.js",
      "require": "./dist/geojson-offset.umd.js",
      "default": "./dist/geojson-offset.es.js"
    }
  },
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=22.19.0"
  },
  "packageManager": "pnpm@11.9.0",
  "sideEffects": false,
  "scripts": {
    "dev": "rslib --watch",
    "lint": "run-s lint:*",
    "lint:check": "biome check --write",
    "lint:rslint": "rslint .",
    "lint:format": "prettier --write .",
    "build": "run-s build:lib build:dts",
    "build:lib": "rslib build",
    "build:dts": "dts-bundle-generator --project ./tsconfig.app.json --no-banner -o dist/geojson-offset.d.ts src/index.ts",
    "test": "rstest",
    "test:watch": "rstest --watch",
    "version": "auto-changelog -p && git add CHANGELOG.md"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@tsconfig/node-lts": "^24.0.0",
    "@types/geojson": "^7946.0.16",
    "@types/node": "^26.0.1",
    "@biomejs/biome": "2.5.1",
    "@rsbuild/core": "^2.1.2",
    "@rslib/core": "^0.23.1",
    "@rslint/core": "^0.6.4",
    "@rstest/adapter-rslib": "^0.10.6",
    "@rstest/core": "^0.10.6",
    "@types/three": "^0.185.0",
    "dts-bundle-generator": "^9.5.1",
    "husky": "^9.1.7",
    "jiti": "^2.7.0",
    "lint-staged": "^17.0.8",
    "npm-run-all2": "^9.0.2",
    "prettier": "^3.9.4",
    "rimraf": "^6.1.3",
    "typescript": "6.0.3"
  },
  "lint-staged": {
    "*": "pnpm lint:format"
  }
}