{
  "name": "@cmdcode/secp256k1",
  "version": "1.0.9",
  "description": "Humble fork of the @noble/secp256k1 library by Paul Miller.",
  "files": [
    "README.md",
    "LICENSE",
    "dist"
  ],
  "type": "module",
  "main": "./dist/main.js",
  "unpkg": "./dist/bundle.min.js",
  "types": "./dist/types/index.d.ts",
  "exports": {
    "import": "./dist/module.js",
    "require": "./dist/main.js"
  },
  "scripts": {
    "bench": "node test/benchmark.js",
    "build": "rollup -c rollup.config.ts --configPlugin typescript",
    "coverage": "jest --coverage",
    "clean": "rm -rf dist/* coverage .nyc_output",
    "lint": "eslint . --ext .ts",
    "fix": "eslint --fix . --ext .ts",
    "release": "yarn test && yarn clean && yarn types && yarn build",
    "test": "yarn clean && jest",
    "types": "tsc",
    "start": "node --trace-deprecation --no-warnings --loader ts-node/esm",
    "scratch": "yarn start scratch.ts"
  },
  "author": "Christopher Scott",
  "repository": {
    "type": "git",
    "url": "https://github.com/cmdruid/noble-secp256k1.git"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public"
  },
  "license": "MIT",
  "devDependencies": {
    "@cmdcode/webcrypto": "^1.0.0",
    "@noble/hashes": "1.1.2",
    "@rollup/plugin-commonjs": "22.0.0",
    "@rollup/plugin-node-resolve": "13.3.0",
    "@rollup/plugin-terser": "^0.4.0",
    "@rollup/plugin-typescript": "^11.0.0",
    "@types/jest": "28.1.1",
    "@types/node": "^18.13.0",
    "@typescript-eslint/eslint-plugin": "^5.48.0",
    "eslint": "^8.31.0",
    "eslint-config-standard-with-typescript": "^26.0.0",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-n": "^15.6.0",
    "eslint-plugin-promise": "^6.1.1",
    "fast-check": "3.0.0",
    "jest": "28.1.0",
    "micro-bmark": "0.2.0",
    "rollup": "2.75.5",
    "ts-jest": "28.0.4",
    "ts-node": "^10.9.1",
    "tslib": "^2.5.0",
    "typescript": "4.9.4"
  },
  "keywords": [
    "secp256k1",
    "secp",
    "secp256",
    "elliptic",
    "elliptic curve",
    "curve",
    "signature",
    "ecc",
    "rfc6979",
    "schnorr",
    "sig",
    "bip0340",
    "bip340",
    "ecdsa",
    "endomorphism",
    "cryptography",
    "security",
    "noble"
  ],
  "jest": {
    "testRegex": "/test/.*?\\.ts",
    "transform": {
      "^.+\\.ts$": "ts-jest"
    }
  },
  "funding": [
    {
      "type": "individual",
      "url": "https://paulmillr.com/funding/"
    }
  ]
}
