{
  "name": "eop_lib2",
  "version": "1.0.3",
  "description": "A pure JS library for interacting with geospatial services.",
  "main": "./dist/dist-node.js",
  "browser": "./dist/index.js",
  "typings": "./dist/index.d.ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/camptocamp/ogc-client.git"
  },
  "homepage": "https://github.com/camptocamp/ogc-client",
  "files": [
    "dist/",
    "src/"
  ],
  "type": "module",
  "dependencies": {
    "@rgrove/parse-xml": "^4.1.0",
    "node-fetch": "^3.3.1"
  },
  "devDependencies": {
    "@types/geojson": "^7946.0.10",
    "@types/jest": "^29.5.11",
    "@types/node": "^20.2.5",
    "@typescript-eslint/eslint-plugin": "^7.1.0",
    "@typescript-eslint/parser": "^7.1.0",
    "browser-cache-mock": "^0.1.7",
    "buffer": "^6.0.3",
    "esbuild": "^0.17.19",
    "eslint": "^8.57.0",
    "eslint-plugin-require-extensions": "^0.1.3",
    "fs-extra": "^11.1.1",
    "isomorphic-fetch": "^3.0.0",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^29.7.0",
    "mitt": "^3.0.0",
    "ol": "^8.2.0",
    "prettier": "2.8.8",
    "proj4": "^2.10.0",
    "regenerator-runtime": "^0.13.11",
    "ts-jest": "^29.1.1",
    "tslib": "^2.6.2",
    "typescript": "^5.3.3",
    "vite": "^5.1.0",
    "vite-plugin-dts": "^3.7.2"
  },
  "peerDependencies": {
    "ol": ">5.x",
    "proj4": ">2.8"
  },
  "peerDependenciesMeta": {
    "ol": {
      "optional": true
    },
    "proj4": {
      "optional": true
    }
  },
  "scripts": {
    "test": "jest",
    "format:write": "prettier --write .",
    "format:check": "prettier --check .",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "npm run lint -- --fix",
    "build": "rm -rf dist && npm run build:worker && npm run build:node && npm run build:browser",
    "build:browser": "esbuild $(find ./src -name \"*.ts\" -type f -not -path '*worker/index.ts' -not -path '*.spec.ts') --outdir=./dist --platform=neutral --format=esm --sourcemap",
    "build:node": "vite build --config vite.node-config.js",
    "build:worker": "vite build --config vite.worker-config.js",
    "prepublishOnly": "npm run typecheck && npm test && npm run build",
    "typecheck": "tsc --noEmit"
  },
  "author": "olivia.guyot@camptocamp.com",
  "license": "BSD-3-Clause",
  "bugs": {
    "url": "https://github.com/camptocamp/ogc-client/issues"
  }
}
