UNPKG

discreetly-interfaces

Version:

Common interfaces and utilities for discreetly

82 lines 2.3 kB
{ "name": "discreetly-interfaces", "version": "0.1.42", "description": "Common interfaces and utilities for discreetly", "authors": [ "AtHeartEngineer", "CodeTrauma" ], "homepage": "https://github.com/Discreetly", "license": "MIT", "scripts": { "build": "rollup --config rollup.config.mjs", "test": "jest", "test:debug": "jest --silent=false", "test:benchmark": "jest --silent=false ./tests/circuit-wrapper.test.ts", "test:ci": "jest --silent=false --runInBand", "lint": "eslint --ext .ts,.tsx,.js,.jsx src/ -c .eslintrc.js", "format": "eslint --ext .ts,.tsx,.js,.jsx src/ -c .eslintrc.js --fix" }, "keywords": [ "rln", "rate-limiting-nullifier", "ethereum", "circom", "zk", "zero-knowledge", "zk-snarks", "zero-knowledge-proofs" ], "publishConfig": { "access": "public" }, "main": "./dist/index.node.js", "module": "./dist/index.mjs", "browser": { "./dist/index.node.js": "./dist/index.mjs" }, "types": "./dist/types/index.d.ts", "directories": { "dist": "./dist", "src": "./src", "test": "./tests" }, "files": [ "dist/", "src/", "LICENSE", "README.md" ], "dependencies": { "@ethersproject/bytes": "^5.7.0", "@ethersproject/keccak256": "^5.7.0", "@ethersproject/strings": "^5.7.0", "poseidon-lite": "^0.2.0", "rlnjs": "^3.1.4" }, "devDependencies": { "@rollup/plugin-commonjs": "^25.0.2", "@rollup/plugin-json": "^6.0.0", "@rollup/plugin-node-resolve": "^15.0.1", "@rollup/plugin-replace": "^5.0.2", "@types/jest": "^29.2.4", "@typescript-eslint/eslint-plugin": "^5.50.0", "@typescript-eslint/parser": "^5.51.0", "eslint": "^8.33.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-config-airbnb-typescript": "^17.0.0", "eslint-import-resolver-typescript": "^3.5.3", "eslint-plugin-import": "^2.27.5", "jest": "^29.5.0", "prettier": "^3.0.0", "rollup": "^3.14.0", "rollup-plugin-cleaner": "^1.0.0", "rollup-plugin-include-sourcemaps": "^0.7.0", "rollup-plugin-polyfill-node": "^0.12.0", "rollup-plugin-typescript2": "^0.35.0", "rollup-plugin-visualizer": "^5.9.0", "ts-jest": "^29.0.3", "tslib": "^2.5.0", "typescript": "^5.1.6" } }