UNPKG

@ultron.foundation/v3-sdk

Version:

⚒️ An SDK for building applications on top of Ultron V3

62 lines 1.46 kB
{ "name": "@ultron.foundation/v3-sdk", "license": "MIT", "publishConfig": { "access": "public" }, "version": "3.7.6", "description": "⚒️ An SDK for building applications on top of Ultron V3", "files": [ "dist" ], "keywords": [ "ultron.foundation", "bsc", "ultron" ], "sideEffects": false, "main": "dist/index.js", "types": "dist/index.d.ts", "module": "dist/index.mjs", "dependencies": { "@uniswap/v3-staker": "1.0.0", "big.js": "^5.2.2", "decimal.js-light": "^2.5.0", "tiny-invariant": "^1.3.0", "tiny-warning": "^1.0.3", "toformat": "^2.0.0", "viem": "1.19.11", "@ultron.foundation/sdk": "5.7.6", "@ultron.foundation/swap-sdk-core": "1.0.0", "@ultron.foundation/tokens": "0.6.1", "@ultron.foundation/chains": "0.4.1" }, "devDependencies": { "tsup": "^6.7.0", "@ultron.foundation/utils": "6.0.0" }, "engines": { "node": ">=10" }, "prettier": { "printWidth": 120, "semi": false, "singleQuote": true }, "exports": { "./package.json": "./package.json", ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "scripts": { "build": "tsup", "dev": "tsup --watch", "test": "vitest --run", "update:snapshot": "vitest -u", "coverage": "vitest run --coverage", "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist" } }