UNPKG

@abstractswap/v4-sdk

Version:

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

94 lines (93 loc) 2.29 kB
{ "name": "@abstractswap/v4-sdk", "version": "0.0.9", "description": "⚒️ An SDK for building applications on top of Uniswap V4", "repository": "https://github.com/abstractswap/sdks.git", "keywords": [ "uniswap", "ethereum" ], "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", "module": "dist/v4-sdk.esm.js", "files": [ "dist" ], "engines": { "node": ">=14" }, "scripts": { "build": "tsdx build", "lint": "tsdx lint src", "release": "semantic-release -e ../../.releaserc.js", "start": "tsdx watch", "test": "tsdx test" }, "dependencies": { "@abstractswap/sdk-core": "0.0.9", "@abstractswap/v3-sdk": "0.0.9", "@ethersproject/solidity": "^5.0.9", "tiny-invariant": "^1.1.0", "tiny-warning": "^1.0.3" }, "devDependencies": { "@types/chai": "^4.3.3", "@types/mocha": "^9.1.1", "@types/node": "^18.7.16", "@types/node-fetch": "^2.6.2", "chai": "^4.3.6", "dotenv": "^16.0.3", "eslint-plugin-prettier": "^3.4.1", "prettier": "^2.4.1", "ts-node": "^10.9.1", "tsdx": "^0.14.1", "tslib": "^2.3.0", "typedoc": "^0.21.2", "typescript": "^4.3.3" }, "resolutions": { "regenerator-runtime": "^0.14.1" }, "resolutionsComments": { "regenerator-runtime": "Fixes https://github.com/facebook/regenerator/pull/480. It can be removed when `tsdx` updates their dependencies." }, "prettier": { "printWidth": 120, "semi": false, "singleQuote": true }, "publishConfig": { "access": "public", "provenance": true }, "release": { "extends": "semantic-release-monorepo", "branches": [ { "name": "abstract", "prerelease": false } ], "plugins": [ [ "@semantic-release/commit-analyzer", { "preset": "angular", "releaseRules": "../../publishing/release-rules.cjs" } ], "@semantic-release/release-notes-generator", "@semantic-release/npm", "@semantic-release/github", [ "@semantic-release/exec", { "successCmd": "git restore yarn.lock && yarn", "failCmd": "git restore yarn.lock && yarn", "execCwd": "../.." } ] ] } }