{
  "name": "@deepidv/chain",
  "version": "1.2.2",
  "description": "Node.js / TypeScript SDK for the deepidv chain layer — typed access to the public registry API and partial offline bundle verification.",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./types": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/types/index.mjs",
      "require": "./dist/types/index.cjs"
    },
    "./crypto": {
      "types": "./dist/crypto/index.d.ts",
      "import": "./dist/crypto/index.mjs",
      "require": "./dist/crypto/index.cjs"
    },
    "./verify": {
      "types": "./dist/verify/index.d.ts",
      "import": "./dist/verify/index.mjs",
      "require": "./dist/verify/index.cjs"
    },
    "./client": {
      "types": "./dist/client/index.d.ts",
      "import": "./dist/client/index.mjs",
      "require": "./dist/client/index.cjs"
    }
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsup",
    "clean": "rm -rf dist coverage",
    "typecheck": "tsc --noEmit",
    "lint": "eslint .",
    "format": "prettier --write --no-error-on-unmatched-pattern \"src/**/*.ts\" \"test/**/*.ts\" \"examples/**/*.ts\"",
    "format:check": "prettier --check --no-error-on-unmatched-pattern \"src/**/*.ts\" \"test/**/*.ts\" \"examples/**/*.ts\"",
    "test": "tsc --noEmit && node --import tsx --test \"test/**/*.spec.ts\"",
    "test:integration": "DEEPIDV_INTEGRATION=1 node --import tsx --test \"test/**/*.integration.spec.ts\"",
    "prepublishOnly": "npm run clean && npm run typecheck && npm run test && npm run build"
  },
  "engines": {
    "node": ">=22.0.0"
  },
  "license": "Apache-2.0",
  "author": "Deep Identity Inc. <ip@deepidv.com>",
  "homepage": "https://proof.deepidv.com",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Deep-Identity-Inc/deepidv-chain-node.git"
  },
  "bugs": {
    "url": "https://github.com/Deep-Identity-Inc/deepidv-chain-node/issues"
  },
  "keywords": [
    "deepidv",
    "chain",
    "transparency-log",
    "attestation",
    "verification",
    "merkle",
    "rfc6962",
    "ecdsa",
    "proof"
  ],
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@types/node": "^20.14.0",
    "@typescript-eslint/eslint-plugin": "^8.0.0",
    "@typescript-eslint/parser": "^8.0.0",
    "eslint": "^9.5.0",
    "prettier": "^3.3.0",
    "tsup": "^8.1.0",
    "tsx": "^4.15.0",
    "typescript": "^5.5.0"
  },
  "overrides": {
    "esbuild": ">=0.28.1"
  },
  "allowScripts": {
    "esbuild@0.28.1": true
  }
}
