UNPKG

@iguanadex/sdk

Version:

🛠 An SDK for building applications on top of IguanaDEX.

57 lines • 1.28 kB
{ "name": "@iguanadex/sdk", "license": "MIT", "version": "5.8.2", "description": "🛠 An SDK for building applications on top of IguanaDEX.", "main": "dist/index.js", "typings": "dist/index.d.ts", "module": "dist/index.mjs", "files": [ "dist" ], "repository": { "type": "git", "url": "https://github.com/iguanadex/frontend.git", "directory": "packages/swap-sdk" }, "keywords": [ "iguanadex", "etherlink" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" }, "./package.json": "./package.json" }, "dependencies": { "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", "@iguanadex/chains": "^1.0.4", "@iguanadex/swap-sdk-core": "1.1.3" }, "devDependencies": { "@types/big.js": "^4.0.5", "tsup": "^6.7.0" }, "engines": { "node": "18.x" }, "prettier": { "printWidth": 120, "semi": false, "singleQuote": true }, "scripts": { "build": "tsup", "dev": "tsup --watch", "test": "vitest --run", "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist" } }