mirror of
https://github.com/CryptKeeperZK/semaphore.git
synced 2026-01-09 15:37:57 -05:00
45 lines
1.4 KiB
JSON
45 lines
1.4 KiB
JSON
{
|
|
"name": "@semaphore-protocol/identity",
|
|
"version": "2.0.0",
|
|
"description": "A library to create Semaphore identities.",
|
|
"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/",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"repository": "https://github.com/semaphore-protocol/semaphore",
|
|
"homepage": "https://github.com/semaphore-protocol/semaphore/tree/main/packages/identity",
|
|
"bugs": {
|
|
"url": "https://github.com/semaphore-protocol/semaphore.git/issues"
|
|
},
|
|
"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-cleanup": "^3.2.1",
|
|
"rollup-plugin-typescript2": "^0.31.2",
|
|
"typedoc": "^0.22.11"
|
|
},
|
|
"dependencies": {
|
|
"@ethersproject/bignumber": "^5.5.0",
|
|
"@ethersproject/random": "^5.5.1",
|
|
"@ethersproject/sha2": "^5.6.1",
|
|
"@ethersproject/strings": "^5.6.1",
|
|
"circomlibjs": "0.0.8"
|
|
}
|
|
}
|