Files
bandada/libs/credentials/package.json
Vivian Plasencia 23e1f65843 chore: v2.2.6
2024-04-09 20:37:22 +02:00

43 lines
1.2 KiB
JSON

{
"name": "@bandada/credentials",
"version": "2.2.6",
"description": "Bandada library to validate users' credentials.",
"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/bandada-infra/bandada",
"homepage": "https://github.com/bandada-infra/bandada/tree/main/libs/credentials",
"bugs": {
"url": "https://github.com/bandada-infra/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"
},
"dependencies": {
"@bandada/utils": "2.2.6",
"ethers": "5.7.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.0.0",
"rimraf": "^4.1.2",
"rollup": "^3.17.2",
"rollup-plugin-cleanup": "^3.2.1",
"typescript": "^4.9.5"
}
}