@jfswap/sdk
Version:
🛠An SDK for building applications on top of JFSwap.
83 lines (82 loc) • 2.09 kB
JSON
{
"name": "@jfswap/sdk",
"license": "MIT",
"private": false,
"version": "1.8.0",
"description": "🛠An SDK for building applications on top of JFSwap.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"jfswap",
"dex",
"ethereum",
"okc",
"bsc",
"npm",
"blockchain",
"registry"
],
"module": "dist/sdk.esm.js",
"scripts": {
"lint": "tsdx lint src test",
"build": "rm -rf dist && tsdx build",
"start": "tsdx watch",
"test": "tsdx test",
"prepublishOnly": "tsdx build",
"semantic-release": "semantic-release --debug true",
"prepare": "husky install"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@uniswap/v2-core": "^1.0.0",
"big.js": "^5.2.2",
"decimal.js-light": "^2.5.0",
"jsbi": "^3.1.1",
"tiny-invariant": "^1.1.0",
"tiny-warning": "^1.0.3",
"toformat": "^2.0.0"
},
"peerDependencies": {
"@ethersproject/address": "^5.0.0-beta",
"@ethersproject/contracts": "^5.0.0-beta",
"@ethersproject/networks": "^5.0.0-beta",
"@ethersproject/providers": "^5.0.0-beta",
"@ethersproject/solidity": "^5.0.0-beta"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@ethersproject/address": "^5.0.2",
"@ethersproject/contracts": "^5.0.2",
"@ethersproject/networks": "^5.0.2",
"@ethersproject/providers": "^5.0.5",
"@ethersproject/solidity": "^5.0.2",
"@semantic-release/git": "^10.0.1",
"@types/big.js": "^4.0.5",
"@types/jest": "^24.0.25",
"babel-plugin-transform-jsbi-to-bigint": "^1.3.1",
"browserslist": "^4.16.6",
"conventional-changelog-cli": "^2.2.2",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "2.7.1",
"semantic-release": "^18.0.1",
"tsdx": "^0.14.1"
},
"engines": {
"node": ">=10"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
},
"lint-staged": {
"*.{ts,js,json,.md}": "prettier --write"
}
}