diff --git a/package.json b/package.json index ed497d0..2b7c095 100644 --- a/package.json +++ b/package.json @@ -1,17 +1,39 @@ { - "name": "symbiotic-tests", - "version": "1.0.0", - "description": "Test helpers for Symbiotic protocol", - "private": true, - "scripts": { - "testgen": "node test/helpers/ed25519TestGenerator.js" + "name": "@symbioticfi/middleware-sdk", + "version": "0.0.1", + "description": "Symbiotic is a shared security protocol enabling decentralized networks to control and customize their own multi-asset restaking implementation.", + "homepage": "https://symbiotic.fi/", + "bugs": "https://github.com/symbioticfi/middleware-sdk/issues", + "license": "MIT", + "author": "Symbiotic Team", + "files": [ + "src/**/*", + "test/mocks/**/*", + "out/**/*.json" + ], + "repository": { + "type": "git", + "url": "https://github.com/symbioticfi/middleware-sdk.git" }, + "keywords": [ + "solidity", + "ethereum", + "smart", + "contracts", + "security" + ], "dependencies": { - "@noble/curves": "^1.3.0", - "ethereum-cryptography": "^2.1.3", - "ethers": "^6.11.1" + "@openzeppelin/contracts": "5.1.0", + "@openzeppelin/contracts-upgradeable": "5.1.0", + "@symbioticfi/core": "1.0.0-devnet.9", + "@noble/curves": "1.3.0", + "ethereum-cryptography": "2.1.3", + "ethers": "6.11.1" }, "engines": { "node": ">=18.0.0" + }, + "scripts": { + "testgen": "node test/helpers/ed25519TestGenerator.js" } -} \ No newline at end of file +}