UNPKG

@noble/secp256k1

Version:

Fastest 5KB JS implementation of secp256k1 ECDH & ECDSA signatures compliant with RFC6979

60 lines (59 loc) 1.75 kB
{ "name": "@noble/secp256k1", "version": "3.1.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.2.0", "@paulmillr/jsbt": "0.5.0", "@types/node": "25.3.0", "fast-check": "4.2.0", "prettier": "3.6.2", "typescript": "6.0.2" }, "scripts": { "build": "tsc", "build:release": "npx --no @paulmillr/jsbt esbuild test/build", "check": "npm run check:readme && npm run check:treeshake && npm run check:jsdoc", "check:readme": "npx --no @paulmillr/jsbt readme package.json", "check:treeshake": "npx --no @paulmillr/jsbt treeshake package.json test/build/out-treeshake", "check:jsdoc": "npx --no @paulmillr/jsbt tsdoc package.json", "bench": "node test/benchmark.ts", "format": "prettier --write 'index.ts' 'test/*.{js,ts}'", "test": "node test/index.ts", "test:bun": "bun test/index.ts", "test:deno": "deno --allow-env --allow-read test/index.ts", "test:node20": "cd test; npx tsc; node compiled/test/index.js" }, "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" }