UNPKG

@razorlabs/dex-sdk

Version:

⚒️ An SDK for building applications on top of Razor DEX

60 lines 1.38 kB
{ "name": "@razorlabs/dex-sdk", "description": "⚒️ An SDK for building applications on top of Razor DEX", "repository": "https://github.com/razorlabsorg/dex-sdk", "keywords": [ "Razor", "DEX", "DEX SDK", "SDK", "Movement", "aptos", "sui" ], "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", "module": "dist/index.mjs", "files": [ "dist" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" }, "./package.json": "./package.json" }, "version": "0.0.1", "engines": { "node": ">=16.0.0" }, "publishConfig": { "access": "public" }, "devDependencies": { "@types/big.js": "^6.2.2", "@types/node": "^22.1.0", "prettier": "^3.3.3", "tsup": "^8.2.4", "typescript": "^5.5.4" }, "dependencies": { "@aptos-labs/ts-sdk": "^1.26.0", "@ethersproject/bignumber": "^5.7.0", "big.js": "^6.2.1", "decimal.js-light": "^2.5.1", "tiny-invariant": "^1.3.3", "toformat": "^2.0.0" }, "scripts": { "dev": "tsup --watch", "lint": "eslint src/ --ext .js,.jsx,.ts,.tsx", "clean": "rm -rf dist", "ts-node": "ts-node", "docs": "typedoc --entryPoints src/index.ts", "format": "prettier --write \"**/*.{ts,tsx,md}\"", "build": "tsup" } }