mirror of
https://github.com/CryptKeeperZK/semaphore.git
synced 2026-01-09 15:37:57 -05:00
42 lines
1.3 KiB
JSON
42 lines
1.3 KiB
JSON
{
|
|
"name": "@cryptkeeperzk/semaphore-data",
|
|
"private":"true",
|
|
"version": "3.10.1",
|
|
"description": "A library to query Semaphore contracts.",
|
|
"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/CryptKeeperZK/semaphore",
|
|
"homepage": "https://github.com/semaphore-protocol/semaphore/tree/main/packages/data",
|
|
"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/data"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-json": "^6.0.0",
|
|
"rollup-plugin-cleanup": "^3.2.1",
|
|
"rollup-plugin-typescript2": "^0.31.2",
|
|
"typedoc": "^0.22.11"
|
|
},
|
|
"dependencies": {
|
|
"@ethersproject/contracts": "^5.7.0",
|
|
"@ethersproject/providers": "^5.7.0",
|
|
"axios": "^0.27.2"
|
|
}
|
|
}
|