UNPKG

@pancakeswap/v3-sdk

Version:

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

59 lines 1.34 kB
{ "name": "@pancakeswap/v3-sdk", "license": "MIT", "publishConfig": { "access": "public" }, "version": "3.10.0", "description": "⚒️ An SDK for building applications on top of Pancakeswap V3", "files": [ "dist" ], "keywords": [ "pancakeswap", "bsc" ], "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": "2.37.13", "@pancakeswap/sdk": "5.9.0", "@pancakeswap/swap-sdk-core": "1.6.0", "@pancakeswap/chains": "0.8.0" }, "devDependencies": { "tsup": "^6.7.0", "@pancakeswap/utils": "8.0.2" }, "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" } }