evx-sdk
Version:
The Evx SDK is a developer toolkit designed to simplify interaction with the Evx decentralized liquidity protocol. It provides an abstraction layer over the smart contracts, allowing developers to easily build applications, integrate liquidity pools, fetc
108 lines (107 loc) • 2.94 kB
JSON
{
"name": "evx-sdk",
"version": "1.0.3",
"author": "Jeffersson Abreu",
"description": "The Evx SDK is a developer toolkit designed to simplify interaction with the Evx decentralized liquidity protocol. It provides an abstraction layer over the smart contracts, allowing developers to easily build applications, integrate liquidity pools, fetch pool data, simulate quotes, deploy pools, and manage NFT-based liquidity positions.",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
}
},
"readme": "README.md",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"keywords": [
"defi",
"ethereum",
"liquidity",
"exchange",
"finance",
"dapps",
"blockchain",
"smart-contracts",
"evx-sdk",
"amm",
"token",
"erc20",
"erc721",
"yield-farming",
"governance",
"web3",
"ethers.js",
"hardhat",
"foundry",
"solidity",
"gas-optimization",
"on-chain-data",
"token-swap",
"defi-tools",
"liquidity-pools",
"oracle",
"price-feed",
"dex",
"pool",
"multichain",
"defi-protocol"
],
"engines": {
"node": ">=18.19.1"
},
"scripts": {
"lint": "eslint './src/**/*.{ts,tsx}'",
"lint:fix": "eslint './src/**/*.{ts,tsx}' --fix",
"build": "rollup -c && tsc-alias -p tsconfig.json",
"build:watch": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"version:update": "tsx tools/version-manager.ts --branch",
"version:simulate": "tsx tools/version-manager.ts --simulate --branch",
"version:test": "tsx tests/tools/run-version-tests.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evx-finance/evx-sdk.git"
},
"bugs": {
"url": "https://github.com/evx-finance/evx-sdk/issues"
},
"homepage": "https://github.com/evx-finance/evx-sdk#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.21",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"cpy-cli": "^5.0.0",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"jest": "^29.7.0",
"rollup": "^4.44.0",
"rollup-plugin-dts": "^6.2.1",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"dependencies": {
"ethers": "^6.14.1",
"reflect-metadata": "^0.2.2",
"tsyringe": "^4.10.0"
}
}