{
  "name": "@left-curve/crypto",
  "version": "1.0.0",
  "type": "module",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "sideEffects": false,
  "main": "./build/index.cjs",
  "module": "./build/index.js",
  "types": "./build/index.d.ts",
  "files": [
    "build"
  ],
  "exports": {
    ".": {
      "source": "./src/index.ts",
      "types": "./build/index.d.ts",
      "import": "./build/index.js",
      "default": "./build/index.cjs"
    }
  },
  "devDependencies": {
    "vitest": "2.1.1",
    "@left-curve/config": "^1.0.0"
  },
  "dependencies": {
    "cbor-x": "^1.6.0",
    "@noble/curves": "^1.6.0",
    "@noble/hashes": "^1.4.0",
    "@scure/bip32": "^1.4.0",
    "@scure/bip39": "^1.3.0",
    "@left-curve/types": "^1.0.0",
    "@left-curve/encoding": "^1.0.0"
  },
  "license": "TBD",
  "homepage": "https://dango.exchange",
  "repository": "left-curve/left-curve",
  "keywords": [
    "grug",
    "dango",
    "smart-contracts",
    "blockchain",
    "cryptocurrency",
    "web3",
    "typescript"
  ],
  "scripts": {
    "build": "pnpm tsup --clean",
    "test": "pnpm vitest run",
    "lint": "pnpm biome check --write src"
  }
}