UNPKG

@cloudflare/zkp-ecdsa

Version:

zkp-ecdsa: A Typescript Implementation of ZKAttest

63 lines (62 loc) 1.91 kB
{ "name": "@cloudflare/zkp-ecdsa", "version": "0.2.5", "description": "zkp-ecdsa: A Typescript Implementation of ZKAttest", "repository": { "type": "git", "url": "https://github.com/cloudflare/zkp-ecdsa.git" }, "contributors": [ "Armando Faz <armfazh@cloudflare.com>", "Watson Ladd <watson@cloudflare.com>" ], "keywords": [ "ecdsa", "zero-knowledge", "cryptography", "crypto" ], "type": "module", "main": "./lib/src/index.js", "module": "./lib/src/index.js", "types": "./lib/src/index.d.ts", "files": [ "lib/src/!(*.tsbuildinfo)", "tsconfig.json" ], "license": "Apache-2.0", "private": false, "devDependencies": { "@types/benchmark": "2.1.2", "@typescript-eslint/eslint-plugin": "5.42.0", "@typescript-eslint/parser": "5.42.0", "0x": "5.4.1", "benchmark": "2.1.4", "eslint": "8.26.0", "eslint-config-prettier": "8.5.0", "eslint-plugin-prettier": "4.2.1", "eslint-plugin-security": "1.5.0", "prettier": "2.7.1", "pvutils": "1.1.3", "typescript": "4.8.4", "webpack-cli": "4.10.0" }, "scripts": { "build": "tsc -b", "prepare": "tsc -b", "test": "tsc -b test && node ./lib/test/all.test.js", "bench": "tsc -b bench && node ./lib/bench/all.bench.js", "bench:hrtime": "tsc -b bench && node ./lib/bench/hrtime.js", "lint": "eslint . --ext .ts", "lint:fix": "npm run lint -- --fix", "flame": "tsc -b bench && 0x --output-dir flames ./lib/bench/flamegraph.js", "format": "prettier './(src|test|bench)/**/*.ts' --write", "bundle": "tsc -b && webpack" }, "dependencies": { "typedjson": "1.8.0" }, "overrides": { "d3-color": "3.1.0" } }