{
  "name": "@noble/curves",
  "version": "2.4.0",
  "description": "Audited & minimal JS implementation of elliptic curve cryptography",
  "files": [
    "*.js",
    "*.d.ts",
    "abstract",
    "src"
  ],
  "dependencies": {
    "@noble/hashes": "2.4.0"
  },
  "devDependencies": {
    "@paulmillr/jsbt": "0.7.1",
    "bismar": "0.1.8",
    "@types/node": "26.2.0",
    "fast-check": "4.2.0",
    "prettier": "3.9.6",
    "typescript": "6.0.3"
  },
  "scripts": {
    "benchmark": "node benchmark/main.ts",
    "benchmark:ct": "node benchmark/ct.ts",
    "build": "tsc",
    "build:clean": "rm {.,abstract}/*.{js,d.ts} 2> /dev/null",
    "check": "jsbt-check",
    "format": "prettier --write 'src/**/*.{js,ts}' 'test/*.{js,ts}'",
    "test": "node --no-warnings test/index.ts",
    "test:slow": "node test/slow-curves.test.ts",
    "test:deno": "deno --allow-env --allow-read test/index.ts",
    "test:bun": "bun test/index.ts"
  },
  "exports": {
    ".": "./index.js",
    "./abstract/bls.js": "./abstract/bls.js",
    "./abstract/curve.js": "./abstract/curve.js",
    "./abstract/der.js": "./abstract/der.js",
    "./abstract/edwards.js": "./abstract/edwards.js",
    "./abstract/fft.js": "./abstract/fft.js",
    "./abstract/frost.js": "./abstract/frost.js",
    "./abstract/hash-to-curve.js": "./abstract/hash-to-curve.js",
    "./abstract/modular.js": "./abstract/modular.js",
    "./abstract/montgomery.js": "./abstract/montgomery.js",
    "./abstract/oprf.js": "./abstract/oprf.js",
    "./abstract/poseidon.js": "./abstract/poseidon.js",
    "./abstract/tower.js": "./abstract/tower.js",
    "./abstract/weierstrass.js": "./abstract/weierstrass.js",
    "./bls12-381.js": "./bls12-381.js",
    "./bn254.js": "./bn254.js",
    "./ed448.js": "./ed448.js",
    "./ed25519.js": "./ed25519.js",
    "./misc.js": "./misc.js",
    "./nist.js": "./nist.js",
    "./secp256k1.js": "./secp256k1.js",
    "./utils.js": "./utils.js",
    "./webcrypto.js": "./webcrypto.js"
  },
  "engines": {
    "node": ">= 20.19.0"
  },
  "keywords": [
    "cryptography",
    "secp256k1",
    "ed25519",
    "p256",
    "p384",
    "p521",
    "secp256r1",
    "ed448",
    "x25519",
    "ed25519",
    "bls12-381",
    "bn254",
    "alt_bn128",
    "bls",
    "noble",
    "ecc",
    "ecdsa",
    "eddsa",
    "oprf",
    "schnorr",
    "fft"
  ],
  "homepage": "https://paulmillr.com/noble/",
  "funding": "https://paulmillr.com/funding/",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/paulmillr/noble-curves.git"
  },
  "type": "module",
  "main": "index.js",
  "module": "index.js",
  "types": "index.d.ts",
  "sideEffects": false,
  "author": "Paul Miller (https://paulmillr.com)",
  "license": "MIT"
}
