UNPKG

@uniswap/v4-sdk

Version:

⚒️ An SDK for building applications on top of Uniswap V4

78 lines (77 loc) 2.1 kB
{ "name": "@uniswap/v4-sdk", "version": "2.2.0", "description": "⚒️ An SDK for building applications on top of Uniswap V4", "repository": "https://github.com/Uniswap/sdks.git", "keywords": [ "uniswap", "ethereum" ], "license": "MIT", "main": "./dist/cjs/src/index.js", "typings": "./dist/types/src/index.d.ts", "module": "./dist/esm/src/index.js", "exports": { ".": { "types": "./dist/types/src/index.d.ts", "import": "./dist/esm/src/index.js", "require": "./dist/cjs/src/index.js" } }, "sideEffects": false, "files": [ "dist" ], "engines": { "node": ">=18" }, "scripts": { "build": "bun run clean && tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json && tsc -p tsconfig.types.json", "clean": "rm -rf dist", "lint": "eslint 'src/**/*.{js,ts,tsx}' --max-warnings 0", "release": "changeset publish", "test": "bun test" }, "dependencies": { "@ethersproject/abi": "^5.5.0", "@ethersproject/abstract-signer": "^5.7.0", "@ethersproject/solidity": "^5.0.9", "@uniswap/sdk-core": "^7.16.0", "@uniswap/v3-periphery": "^1.1.1", "@uniswap/v3-sdk": "^3.30.2", "ethers": "^5.7.0", "jsbi": "^3.1.4", "tiny-invariant": "^1.1.0", "tiny-warning": "^1.0.3", "tslib": "^2.3.0" }, "devDependencies": { "@types/chai": "^4.3.3", "@types/mocha": "^9.1.1", "@types/node": "^18.7.16", "@types/node-fetch": "^2.6.2", "@typescript-eslint/parser": "^5.0.0", "chai": "^4.3.6", "dotenv": "^16.0.3", "eslint": "^8.57.0", "eslint-config-prettier": "^9.1.0", "eslint-config-react-app": "7.0.1", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-functional": "^3.0.2", "eslint-plugin-import": "^2.22.0", "eslint-plugin-prettier": "^3.4.1", "prettier": "^2.4.1", "ts-node": "^10.9.1", "typedoc": "^0.21.2", "typescript": "^4.3.3" }, "prettier": { "printWidth": 120, "semi": false, "singleQuote": true }, "publishConfig": { "access": "public", "provenance": true } }