{
  "name": "s2tiles",
  "version": "1.3.0",
  "description": "S2Tiles is a single-file archive format for tiled data that works for both WM and S2 projections. The goal is to be a \"cloud optimized tile store\" for vector/raster/grid data.",
  "keywords": [
    "S2Tiles",
    "map",
    "tile",
    "open",
    "S2",
    "spec"
  ],
  "type": "module",
  "types": "./dist/index.d.ts",
  "typescript": {
    "main": "lib/index.ts"
  },
  "main": "dist/index.js",
  "exports": {
    ".": {
      "require": "./dist/index.js",
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./dist/*": "./dist/*"
  },
  "scripts": {
    "lint+build+test+docs": "bun run lint && bun run build && bun run test && bun run docs",
    "lint": "oxlint src test",
    "lint:fix": "bun run lint -- --fix",
    "fmt": "bunx oxfmt src test tools benchmarks --check",
    "fmt:fix": "bunx oxfmt",
    "format": "bunx oxfmt:fix && bun run lint:fix",
    "build": "rm -rf dist && mkdir dist && rm -f -- tsconfig.tsbuildinfo && bunx tsc -p tsconfig.build.json",
    "types:bundle": "bun run types:build && node scripts/types.mjs",
    "prepublishOnly": "bun run lint+build+test+docs",
    "package-check": "package-check",
    "test:dev": "bun test --watch --coverage",
    "test": "bun test",
    "test:coverage": "bun run test --coverage",
    "docs": "typedoc",
    "dependencies": "bunx depcruise src --include-only \"^src\" --output-type dot | dot -T svg > ./assets/dependency-graph.svg"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Open-S2/s2tiles.git"
  },
  "author": "Craig OConnor",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Open-S2/s2tiles/issues"
  },
  "files": [
    "dist",
    "s2tiles-spec"
  ],
  "homepage": "https://github.com/Open-S2/s2tiles#readme",
  "devDependencies": {
    "@skypack/package-check": "^0.2.2",
    "@types/bun": "^1.3.14",
    "@types/node": "^26.1.0",
    "@types/pbf": "^3.0.5",
    "@types/tmp": "^0.2.6",
    "coveralls": "^3.1.1",
    "eslint": "^10.6.0",
    "eslint-plugin-jsdoc": "^63.0.11",
    "eslint-plugin-tsdoc": "^0.5.2",
    "oxfmt": "^0.57.0",
    "oxlint": "^1.72.0",
    "s2-tilejson": "^1.14.0",
    "s2json-spec": "^1.12.2",
    "tmp": "^0.2.7",
    "typedoc": "^0.28.19",
    "typedoc-plugin-coverage": "^4.0.3",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.62.1"
  }
}
