Skip to main content
Module

x/ed25519/package.json

Fastest JS implementation of ed25519, x25519 & ristretto255. Independently audited, high-security, 0-dependency EDDSA signatures and ECDH key agreement
Go to Latest
File
{ "name": "noble-ed25519", "version": "1.0.1", "description": "Noble ed25519 & ristretto255. Fast, high-security, easily auditable, 0-dep, 1-file pubkey, scalarmult & EDDSA.", "main": "index.js", "files": [ "index.js", "index.d.ts" ], "scripts": { "build": "tsc -d", "lint": "prettier --print-width 100 --single-quote --check index.ts", "test": "jest", "bench": "node benchmark.js" }, "jest": { "testRegex": "/test/.*.ts", "transform": { "^.+\\.ts$": "ts-jest" }, "useStderr": true, "bail": 2 }, "author": "Paul Miller (https://paulmillr.com)", "homepage": "https://paulmillr.com/posts/noble-secp256k1-fast-ecc/", "repository": { "type": "git", "url": "https://github.com/paulmillr/noble-ed25519.git" }, "license": "MIT", "devDependencies": { "@types/jest": "^25.2.1", "@types/node": "^12.12.36", "fast-check": "^1.24.1", "jest": "^25.4.0", "micro-bmark": "^0.1.2", "prettier": "^2.0.5", "ts-jest": "^25.4.0", "typescript": "^3.8.3" }, "keywords": [ "ed25519", "edwards", "ristretto255", "decaf", "curve25519", "x25519", "elliptic", "elliptic curve", "curve", "signature", "ecc", "eddsa", "ecdsa", "cryptography", "security" ]}