UNPKG

@energiswap/v2-sdk

Version:

🛠 An SDK for building applications on top of Energiswap V2

93 lines (92 loc) • 2.21 kB
{ "name": "@energiswap/v2-sdk", "version": "0.1.0", "description": "🛠 An SDK for building applications on top of Energiswap V2", "keywords": [ "energiswap", "energi" ], "repository": { "type": "git", "url": "https://git.energi.software/energi/tech/defi/swap/v3/sdks" }, "license": "MIT", "author": "contact@energi.team", "type": "commonjs", "main": "dist/index.js", "files": [ "dist" ], "scripts": { "build": "tsdx build", "lint": "tsdx lint src", "release": "semantic-release", "start": "tsdx watch", "test": "tsdx test" }, "dependencies": { "@energiswap/sdk-core": "workspace:*", "@ethersproject/address": "^5.0.2", "@ethersproject/solidity": "^5.0.9", "tiny-invariant": "^1.1.0", "tiny-warning": "^1.0.3" }, "devDependencies": { "@types/big.js": "^4.0.5", "@types/jest": "^24.0.25", "@uniswap/v2-core": "^1.0.1", "eslint": "^7.8.0", "eslint-config-prettier": "^6.11.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", "jest": "25.5.0", "prettier": "^2.4.1", "tsdx": "^0.14.1", "typescript": "^4.3.3" }, "engines": { "node": ">=10" }, "publishConfig": { "access": "public", "provenance": true }, "typings": "dist/index.d.ts", "module": "dist/v2-sdk.esm.js", "prettier": { "printWidth": 120, "semi": false, "singleQuote": true }, "release": { "extends": "semantic-release-monorepo", "branches": [ { "name": "main", "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": "../.." } ] ] } }