@byzantine/operator-sdk
Version:
SDK for integrating operators with Byzantine Finance ecosystem
52 lines (51 loc) • 1.29 kB
JSON
{
"name": "@byzantine/operator-sdk",
"version": "1.0.5",
"description": "SDK for integrating operators with Byzantine Finance ecosystem",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"author": "Byzantine Finance",
"keywords": [
"blockchain",
"ethereum",
"defi",
"restaking",
"byzantine",
"operator",
"symbiotic",
"native"
],
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"test": "node test/readWalletOperator.js && node test/optinNative.test.js && node test/optinSymbiotic.test.js",
"test:native": "node test/optinNative.test.js",
"test:symbiotic": "node test/optinSymbiotic.test.js",
"test:read": "node test/readWalletOperator.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"ethers": "^6.13.7"
},
"devDependencies": {
"dotenv": "^16.0.0",
"rimraf": "^4.0.0",
"typescript": "^5.0.0"
},
"homepage": "https://byzantine.finance",
"repository": {
"type": "git",
"url": "git+https://github.com/byzantine-finance/operator-sdk.git"
},
"bugs": {
"url": "https://github.com/byzantine-finance/operator-sdk/issues"
},
"publishConfig": {
"access": "public"
}
}