{
  "name": "@noble/secp256k1",
  "version": "2.2.3",
  "description": "Fastest 4KB JS implementation of secp256k1 ECDH & ECDSA signatures compliant with RFC6979",
  "files": [
    "index.js",
    "index.d.ts",
    "index.ts"
  ],
  "type": "module",
  "main": "index.js",
  "module": "index.js",
  "types": "index.d.ts",
  "sideEffects": false,
  "scripts": {
    "build": "tsc",
    "build:min": "cd test/build; npm install; npm run terser",
    "build:mingz": "npm run --silent build:min | gzip -c8",
    "build:release": "npm run --silent build:min > test/build/noble-secp256k1.min.js; npm run --silent build:mingz > test/build/noble-secp256k1.min.js.gz",
    "test": "node test/index.js",
    "test:webcrypto": "node test/index.webcrypto.js",
    "bench": "node test/benchmark.js",
    "loc": "echo \"`npm run --silent build:min | wc -c` symbols `wc -l < index.ts` LOC, `npm run --silent build:mingz | wc -c`B gzipped\""
  },
  "author": "Paul Miller (https://paulmillr.com)",
  "homepage": "https://paulmillr.com/noble/",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/paulmillr/noble-secp256k1.git"
  },
  "license": "MIT",
  "devDependencies": {
    "@noble/hashes": "1.7.0",
    "@paulmillr/jsbt": "0.2.1",
    "fast-check": "3.0.0",
    "micro-bmark": "0.3.1",
    "micro-should": "0.4.0",
    "typescript": "5.5.2"
  },
  "keywords": [
    "secp256k1",
    "rfc6979",
    "signature",
    "ecdsa",
    "noble",
    "cryptography",
    "elliptic curve",
    "ecc",
    "curve",
    "schnorr",
    "bitcoin",
    "ethereum"
  ],
  "exports": {
    ".": {
      "types": "./index.d.ts",
      "default": "./index.js"
    }
  },
  "funding": "https://paulmillr.com/funding/"
}
