{
  "$schema": "https://json.schemastore.org/package.json",
  "name": "@osmix/core",
  "version": "0.2.0",
  "description": "An OSM PBF reader, writer, and merge tool written in TypeScript",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/conveyal/osmix.git"
  },
  "type": "module",
  "main": "./dist/index.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./contracts": {
      "types": "./dist/contracts.d.ts",
      "default": "./dist/contracts.js"
    },
    "./mocks": {
      "types": "./dist/mocks.d.ts",
      "default": "./dist/mocks.js"
    }
  },
  "dependencies": {
    "flatbush": "^4.6.2",
    "geoflatbush": "^2.2.1",
    "geokdbush": "^2.1.0",
    "kdbush": "^4.1.0",
    "@osmix/shared": "0.1.0",
    "@osmix/geo": "0.1.0",
    "@osmix/types": "0.1.0"
  },
  "devDependencies": {
    "typescript": "7.0.1-rc",
    "@osmix/pbf": "0.0.10"
  },
  "types": "./dist/index.d.ts",
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "bench": "vitest bench",
    "test": "pnpm -w exec vitest run --project \"$npm_package_name\"",
    "typecheck": "tsc --noEmit"
  }
}