Files
zk-kit/packages/identity/package.json
2022-02-10 19:46:53 +01:00

44 lines
1.2 KiB
JSON

{
"name": "@zk-kit/identity",
"version": "1.4.1",
"description": "Library for managing identities for Semaphore and RLN protocols.",
"license": "MIT",
"main": "dist/index.node.js",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.node.js"
},
"types": "dist/types/index.d.ts",
"files": [
"dist/",
"src/",
"README.md"
],
"repository": "https://github.com/appliedzkp/zk-kit",
"homepage": "https://github.com/appliedzkp/zk-kit/tree/main/packages/identity",
"author": {
"name": "Andrija Novakovic",
"email": "akinovak@gmail.com"
},
"scripts": {
"build:watch": "rollup -c rollup.config.ts -w --configPlugin typescript",
"build": "rimraf dist && rollup -c rollup.config.ts --configPlugin typescript",
"prepublishOnly": "yarn build",
"docs": "typedoc src/index.ts --out ../../docs/identity"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"rollup-plugin-cleanup": "^3.2.1",
"typedoc": "^0.22.11"
},
"dependencies": {
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/random": "^5.5.1",
"circomlibjs": "0.0.8",
"js-sha256": "^0.9.0"
}
}