UNPKG

@iguanadex/v3-sdk

Version:

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

59 lines 1.33 kB
{ "name": "@iguanadex/v3-sdk", "license": "MIT", "publishConfig": { "access": "public" }, "version": "3.8.2", "description": "⚒️ An SDK for building applications on top of IguanaDEX V3", "files": [ "dist" ], "keywords": [ "iguanadex", "etherlink" ], "sideEffects": false, "main": "dist/index.js", "types": "dist/index.d.ts", "module": "dist/index.mjs", "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/swap-sdk-core": "1.1.3", "@iguanadex/sdk": "5.8.2", "@iguanadex/chains": "1.0.4" }, "devDependencies": { "tsup": "^6.7.0", "@iguanadex/utils": "6.0.4" }, "engines": { "node": "18.x" }, "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" } }