Skip to main content
Module

x/secp256k1/package.json

Fastest JS implementation of secp256k1. Independently audited, high-security, 0-dependency ECDSA & Schnorr signatures.
Go to Latest
File
{ "name": "@noble/secp256k1", "version": "1.5.0", "description": "Fastest JS implementation of secp256k1. Independently audited, high-security, 0-dependency ECDSA & Schnorr signatures", "files": [ "lib" ], "main": "lib/index.js", "module": "lib/esm/index.js", "types": "lib/index.d.ts", "scripts": { "build": "tsc -d && tsc -p tsconfig.esm.json", "build:release": "rollup -c rollup.config.js", "lint": "prettier --print-width 100 --single-quote --check index.ts", "test": "jest", "coverage": "jest --coverage", "bench": "node test/benchmark.js" }, "author": "Paul Miller (https://paulmillr.com)", "homepage": "https://paulmillr.com/noble/", "repository": { "type": "git", "url": "https://github.com/paulmillr/noble-secp256k1.git" }, "license": "MIT", "browser": { "crypto": false }, "devDependencies": { "@noble/hashes": "~1.0.0", "@rollup/plugin-commonjs": "^21.0.0", "@rollup/plugin-node-resolve": "^13.0.0", "@types/jest": "^27", "@types/node": "^16", "fast-check": "^2.14.0", "jest": "^27.4.5", "micro-bmark": "^0.1.3", "prettier": "^2.5.1", "rollup": "^2.62.0", "ts-jest": "^27.1.2", "typescript": "4.5.4" }, "keywords": [ "secp256k1", "secp", "secp256", "elliptic", "elliptic curve", "curve", "signature", "ecc", "rfc6979", "schnorr", "sig", "bip0340", "bip340", "ecdsa", "endomorphism", "cryptography", "security", "noble" ], "exports": { ".": { "import": "./lib/esm/index.js", "default": "./lib/index.js" }, "./index.d.ts": "./lib/index.d.ts" }, "jest": { "testRegex": "/test/.*?\\.ts", "transform": { "^.+\\.ts$": "ts-jest" } }}