{
  "name": "@nillion/nuc",
  "version": "2.0.1",
  "license": "MIT",
  "repository": "https://github.com/NillionNetwork/nuc-ts",
  "files": [
    "CONTRIBUTING.md",
    "dist",
    "DOCUMENTATION.md",
    "LICENSE",
    "README.md"
  ],
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/lib.d.mts",
      "import": "./dist/lib.mjs"
    },
    "./package.json": "./package.json"
  },
  "dependencies": {
    "@noble/curves": "^2.0.1",
    "@noble/hashes": "^2.0.1",
    "@scure/base": "^2.0.0",
    "es-toolkit": "^1.44.0",
    "multiformats": "^13.4.2",
    "viem": "^2.46.2",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@commitlint/cli": "^20.4.2",
    "@commitlint/config-conventional": "^20.4.2",
    "@commitlint/types": "^20.4.0",
    "@types/debug": "^4.1.12",
    "@types/node": "^25.3.0",
    "@types/semver": "^7.7.1",
    "@typescript/native-preview": "7.0.0-dev.20260223.1",
    "@vitest/coverage-v8": "^4.0.18",
    "abitype": "^1.2.3",
    "fast-check": "^4.5.3",
    "lefthook": "^2.1.1",
    "oxfmt": "^0.35.0",
    "oxlint": "^1.50.0",
    "oxlint-tsgolint": "^0.14.2",
    "semver": "^7.7.4",
    "tsdown": "0.20.3",
    "tsx": "^4.21.0",
    "type-fest": "^5.4.4",
    "typedoc": "^0.28.17",
    "typescript": "^5.9.3",
    "vite": "^7.3.1",
    "vite-tsconfig-paths": "^6.1.1",
    "vitest": "^4.0.18"
  },
  "peerDependencies": {
    "pino": "^10.1.0"
  },
  "tsdown": {
    "alias": {
      "#": "./src",
      "#tests": "./tests"
    },
    "clean": true,
    "entry": "./src/lib.ts",
    "format": "esm",
    "inlineOnly": false
  },
  "engines": {
    "node": ">=24"
  },
  "scripts": {
    "check": "pnpm exec oxfmt --check && pnpm exec oxlint --type-aware && pnpm exec tsgo -b",
    "fix": "pnpm exec oxfmt && pnpm exec oxlint --fix --type-aware && pnpm exec tsgo -b",
    "fmt": "pnpm exec oxfmt",
    "install-hooks": "lefthook install",
    "test": "vitest --run",
    "build": "tsdown"
  }
}