{
  "name": "@bcts/components",
  "version": "1.0.0-beta.6",
  "type": "module",
  "description": "A TypeScript implementation of Blockchain Commons cryptographic components. Supports key generation, signing, verification, encryption, and post-quantum cryptography.",
  "license": "BSD-2-Clause-Patent",
  "author": "Parity Technologies <admin@parity.io> (https://parity.io)",
  "homepage": "https://bcts.dev",
  "repository": {
    "type": "git",
    "url": "https://github.com/paritytech/bcts",
    "directory": "packages/components"
  },
  "bugs": {
    "url": "https://github.com/paritytech/bcts/issues"
  },
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.mts",
  "browser": "dist/index.iife.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs",
      "default": "./dist/index.mjs"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsdown",
    "test": "vitest run",
    "test:watch": "vitest",
    "lint": "eslint 'src/**/*.ts' 'tests/**/*.ts'",
    "lint:fix": "eslint 'src/**/*.ts' 'tests/**/*.ts' --fix",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist",
    "docs": "typedoc",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "blockchain",
    "commons",
    "cryptography",
    "keys",
    "signatures",
    "encryption",
    "ed25519",
    "secp256k1",
    "post-quantum"
  ],
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "@bcts/crypto": "^1.0.0-beta.6",
    "@bcts/dcbor": "^1.0.0-beta.6",
    "@bcts/rand": "^1.0.0-beta.6",
    "@bcts/sskr": "^1.0.0-beta.6",
    "@bcts/tags": "^1.0.0-beta.6",
    "@bcts/uniform-resources": "^1.0.0-beta.6",
    "@noble/curves": "^2.2.0",
    "@noble/hashes": "^2.2.0",
    "@noble/post-quantum": "^0.6.1",
    "@scure/base": "^2.2.0",
    "@scure/sr25519": "^2.2.0",
    "pako": "^3.0.1"
  },
  "devDependencies": {
    "@bcts/eslint": "^0.1.0",
    "@bcts/tsconfig": "^0.1.0",
    "@eslint/js": "^10.0.1",
    "@types/node": "^26.1.2",
    "@types/pako": "^2.0.4",
    "eslint": "^10.8.0",
    "tsdown": "^0.22.14",
    "typedoc": "^0.28.20",
    "typescript": "^6.0.3",
    "vitest": "^4.1.10"
  }
}
