Files
bandada/libs/utils/package.json
2023-03-24 10:24:26 +05:30

49 lines
1.5 KiB
JSON

{
"name": "@bandada/utils",
"version": "0.4.0",
"description": "General Bandada utility functions.",
"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/privacy-scaling-explorations/bandada",
"homepage": "https://github.com/privacy-scaling-explorations/bandada/tree/main/libs/utils",
"bugs": {
"url": "https://github.com/privacy-scaling-explorations/bandada.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"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"rimraf": "^4.1.2",
"rollup": "^3.17.2",
"rollup-plugin-cleanup": "^3.2.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/address": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@ethersproject/strings": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"axios": "^1.3.3"
}
}