{
  "name": "@noble/secp256k1",
  "version": "3.2.0",
  "description": "Fastest 5KB JS implementation of secp256k1 ECDH & ECDSA signatures compliant with RFC6979",
  "files": [
    "index.js",
    "index.d.ts",
    "index.ts"
  ],
  "devDependencies": {
    "@noble/hashes": "2.4.0",
    "@paulmillr/jsbt": "0.7.2",
    "@types/node": "26.2.0",
    "bismar": "0.1.9",
    "prettier": "3.9.6",
    "typescript": "7.0.2"
  },
  "scripts": {
    "benchmark": "node benchmark/secp256k1.ts",
    "benchmark:size": "bismar -bsm index.js/getPublicKey index.js/sign index.js/verifyAsync index.js/keygen index.js/schnorr index.js/utils",
    "build": "tsc",
    "check": "jsbt-check",
    "format": "prettier --write 'index.ts' 'test/*.{js,ts}'",
    "test": "node test/index.ts"
  },
  "keywords": [
    "secp256k1",
    "rfc6979",
    "signature",
    "ecdsa",
    "noble",
    "cryptography",
    "elliptic curve",
    "ecc",
    "curve",
    "schnorr",
    "bitcoin",
    "ethereum"
  ],
  "homepage": "https://paulmillr.com/noble/",
  "funding": "https://paulmillr.com/funding/",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/paulmillr/noble-secp256k1.git"
  },
  "type": "module",
  "main": "index.js",
  "module": "index.js",
  "types": "index.d.ts",
  "sideEffects": false,
  "author": "Paul Miller (https://paulmillr.com)",
  "license": "MIT"
}
