UNPKG

@energiswap/sdk-core

Version:

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

93 lines (92 loc) 2.21 kB
{ "name": "@energiswap/sdk-core", "version": "0.1.2", "description": "⚒️ An SDK for building applications on top of Energiswap V3", "keywords": [ "energiswap", "ethereum" ], "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": { "@ethersproject/address": "^5.0.2", "@ethersproject/bytes": "^5.7.0", "@ethersproject/keccak256": "5.7.0", "@ethersproject/strings": "5.7.0", "big.js": "^5.2.2", "decimal.js-light": "^2.5.0", "jsbi": "^3.1.4", "tiny-invariant": "^1.1.0", "toformat": "^2.0.0" }, "devDependencies": { "@types/big.js": "^4.0.5", "@types/jest": "^24.0.25", "babel-eslint": "10.1.0", "eslint-config-react-app": "7.0.1", "eslint-plugin-flowtype": "8.0.3", "eslint-plugin-jsx-a11y": "6.10.2", "eslint-plugin-react": "7.37.4", "eslint-plugin-react-hooks": "5.2.0", "tsdx": "^0.14.1" }, "engines": { "node": ">=10" }, "publishConfig": { "access": "public", "provenance": false }, "typings": "dist/index.d.ts", "module": "dist/sdk-core.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": "../.." } ] ] } }