{
  "name": "@noble/bls12-381",
  "version": "1.4.0",
  "description": "Fastest JS implementation of BLS12-381. Auditable, secure, 0-dependency aggregated signatures & pairings",
  "files": [
    "lib"
  ],
  "main": "lib/index.js",
  "module": "lib/esm/index.js",
  "types": "lib/index.d.ts",
  "scripts": {
    "test": "jest test/*.test.ts",
    "build": "tsc && tsc -p tsconfig.esm.json",
    "build:release": "rollup -c rollup.config.js",
    "bench": "node test/benchmark.js",
    "lint": "prettier --print-width 100 --single-quote --check index.ts"
  },
  "author": "Paul Miller (https://paulmillr.com)",
  "homepage": "https://paulmillr.com/noble/",
  "repository": {
    "type": "git",
    "url": "https://github.com/paulmillr/noble-bls12-381.git"
  },
  "license": "MIT",
  "browser": {
    "crypto": false
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "22.0.0",
    "@rollup/plugin-node-resolve": "13.3.0",
    "@types/jest": "28.1.1",
    "@types/node": "18.0.0",
    "fast-check": "3.0.0",
    "jest": "28.1.0",
    "micro-bmark": "0.2.0",
    "prettier": "2.6.2",
    "rollup": "2.75.5",
    "ts-jest": "28.0.4",
    "typescript": "4.7.3",
    "@noble/hashes": "1.1.2",
    "micro-packed": "0.3.1"
  },
  "keywords": [
    "bls12-381",
    "bls12",
    "bls",
    "bls signature",
    "threshold signatures",
    "aggregate",
    "aggregated",
    "zk-snark",
    "barreto-lynn-scott",
    "barreto-naehrig",
    "snark",
    "pairing",
    "cryptography",
    "security"
  ],
  "exports": {
    "./math": {
      "types": "./lib/math.d.ts",
      "import": "./lib/esm/math.js",
      "default": "./lib/math.js"
    },
    ".": {
      "types": "./lib/index.d.ts",
      "import": "./lib/esm/index.js",
      "default": "./lib/index.js"
    }
  },
  "funding": [
    {
      "type": "individual",
      "url": "https://paulmillr.com/funding/"
    }
  ]
}