{
  "name": "@parity/bulletin-sdk",
  "version": "0.4.0",
  "description": "TypeScript SDK for Polkadot Bulletin Chain",
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "browser": "dist/index.mjs",
  "types": "dist/index.d.cts",
  "sideEffects": false,
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsdown src/index.ts --format cjs,esm --dts",
    "dev": "tsdown src/index.ts --format cjs,esm --dts --watch",
    "test": "vitest run test/unit",
    "test:all": "vitest",
    "test:unit": "vitest run test/unit",
    "test:integration": "vitest run test/integration",
    "lint": "tsc --noEmit && biome check src test",
    "format": "biome check --write src test",
    "typecheck": "tsc --noEmit"
  },
  "keywords": [
    "polkadot",
    "bulletin",
    "chain",
    "storage",
    "ipfs",
    "sdk",
    "blockchain"
  ],
  "author": "Parity Technologies <admin@parity.io>",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/paritytech/polkadot-bulletin-chain.git",
    "directory": "sdk/typescript"
  },
  "dependencies": {
    "@ipld/dag-pb": "^4.1.3",
    "@noble/hashes": "^2.2.0",
    "@polkadot-labs/hdkd-helpers": "^0.0.31",
    "ipfs-unixfs": "^13.0.0"
  },
  "peerDependencies": {
    "multiformats": "^14.0.0",
    "polkadot-api": "^2.1.2"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.4.4",
    "@polkadot-labs/hdkd": "^0.0.29",
    "@total-typescript/tsconfig": "^1.0.4",
    "@types/node": "^26.0.0",
    "@vitest/coverage-v8": "^4.1.2",
    "happy-dom": "^20.8.9",
    "multiformats": "^14.0.0",
    "polkadot-api": "^2.1.2",
    "tsdown": "^0.22.8",
    "typescript": "^7.0.2",
    "vitest": "^4.1.2"
  },
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=22.0.0"
  }
}
