@deliquifiedlabs/uniswapx-sdk
Version:
SDK for the UniswapX protocol
101 lines (100 loc) • 2.83 kB
JSON
{
"name": "@deliquifiedlabs/uniswapx-sdk",
"version": "5.1.5",
"author": "Uniswap",
"repository": "https://github.com/Deliquified/sdks.git",
"keywords": [
"zia",
"lukso"
],
"license": "MIT",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"module": "dist/uniswapx-sdk.esm.js",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "yarn run typechain && tsc -p tsconfig.json",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"prettier": "prettier \"src/**/*.ts\" --list-different",
"release": "semantic-release",
"test": "run-s build test:unit test:integration",
"test:unit": "jest --testPathPattern src --detectOpenHandles --forceExit --testPathIgnorePatterns dist",
"test:integration": "yarn build && cd integration && yarn && yarn test",
"typechain": "typechain --target=ethers-v5 --out-dir src/contracts --glob ./abis/**/*.json"
},
"dependencies": {
"@deliquifiedlabs/sdk-core": "4.2.1",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@uniswap/permit2-sdk": "^1.2.1",
"ethers": "^5.7.0"
},
"devDependencies": {
"@typechain/ethers-v5": "^10.1.0",
"@types/jest": "^24.0.25",
"@types/node": "^18.7.16",
"@typescript-eslint/eslint-plugin": "^5.62",
"@typescript-eslint/parser": "^5.62",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^3.0.2",
"eslint-plugin-import": "^2.22.0",
"husky": "^8.0.3",
"jest": "25.5.0",
"jest-environment-node": "25.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"ts-jest": "25.5.0",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.3.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn fix"
}
},
"publishConfig": {
"access": "public"
},
"release": {
"extends": "semantic-release-monorepo",
"branches": [
{
"name": "still-in-alpha",
"prerelease": false
},
{
"name": "beta",
"prerelease": true
}
],
"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": "../.."
}
]
]
}
}