{
  "name": "noble-curves-extended",
  "version": "0.1.4",
  "description": "This project extends @noble/curves to allow randomBytes to be specified externally",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "npm run typecheck && vite build",
    "test": "vitest --run",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm test && npm run build"
  },
  "keywords": [
    "cryptography",
    "curves",
    "noble-curves",
    "nist",
    "p256",
    "p384",
    "p521",
    "bls12-381",
    "ed25519",
    "secp256k1"
  ],
  "author": "Yasuo Higa",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/higayasuo/noble-curves-extended.git"
  },
  "bugs": {
    "url": "https://github.com/higayasuo/noble-curves-extended/issues"
  },
  "homepage": "https://github.com/higayasuo/noble-curves-extended#readme",
  "engines": {
    "node": ">=16.0.0"
  },
  "devDependencies": {
    "@noble/curves": "^1.9.1",
    "@noble/hashes": "^1.3.3",
    "@types/node": "^20.11.24",
    "@vitest/coverage-v8": "^1.3.1",
    "typescript": "^5.3.3",
    "vite": "^5.1.4",
    "vite-plugin-dts": "^3.7.3",
    "vitest": "^1.3.1"
  },
  "peerDependencies": {
    "@noble/curves": "^1.2.0",
    "@noble/hashes": "^1.3.0",
    "u8a-utils": "^1.0.12"
  }
}
