{
  "name": "@web3-storage/blob-index",
  "description": "An index for slices that may be sharded across multiple blobs.",
  "version": "1.0.5",
  "homepage": "https://web3.storage",
  "repository": {
    "type": "git",
    "url": "https://github.com/storacha/w3up.git",
    "directory": "packages/blob-index"
  },
  "license": "Apache-2.0 OR MIT",
  "type": "module",
  "types": "dist/src/index.d.ts",
  "main": "src/index.js",
  "files": [
    "src",
    "test",
    "dist"
  ],
  "exports": {
    ".": "./dist/src/index.js",
    "./sharded-dag-index": "./dist/src/sharded-dag-index.js",
    "./types": "./dist/src/api.js",
    "./util": "./dist/src/util.js"
  },
  "typesVersions": {
    "*": {
      "types": [
        "dist/src/types"
      ]
    }
  },
  "dependencies": {
    "@ipld/dag-cbor": "^9.0.6",
    "@storacha/one-webcrypto": "^1.0.1",
    "@ucanto/core": "^10.0.1",
    "@ucanto/interface": "^10.0.1",
    "carstream": "^2.1.0",
    "multiformats": "^13.0.1",
    "uint8arrays": "^5.0.3",
    "@web3-storage/capabilities": "^18.0.1"
  },
  "devDependencies": {
    "@ucanto/transport": "^9.1.1",
    "c8": "^7.14.0",
    "entail": "^2.1.2",
    "typescript": "5.2.2",
    "@web3-storage/eslint-config-w3up": "^1.0.0"
  },
  "eslintConfig": {
    "extends": [
      "@web3-storage/eslint-config-w3up"
    ],
    "parserOptions": {
      "project": "./tsconfig.json"
    },
    "env": {
      "mocha": true
    },
    "ignorePatterns": [
      "dist",
      "coverage",
      "src/types.js"
    ]
  },
  "engines": {
    "node": ">=16.15"
  },
  "scripts": {
    "attw": "attw --pack .",
    "build": "tsc --build",
    "dev": "tsc --build --watch",
    "check": "tsc --build",
    "lint": "tsc --build && eslint '**/*.{js,ts}' && prettier --check '**/*.{js,ts,yml,json}' --ignore-path ../../.gitignore",
    "test": "entail test/*.spec.js",
    "coverage": "c8 --reporter text --reporter html npm run test"
  }
}