UNPKG

@aave/protocol-js

Version:

Aave protocol data aggregation tool

123 lines (122 loc) 3.05 kB
{ "version": "4.3.0", "license": "MIT", "name": "@aave/protocol-js", "description": "Aave protocol data aggregation tool", "keywords": [ "Aave", "protocol", "lending", "defi" ], "sideEffects": false, "author": "Aave <tech@aave.com>", "contributors": [ { "name": "Andrey Kozlov", "email": "andrey@aave.com" }, { "name": "Ernesto Boado", "email": "ernesto@aave.com" }, { "name": "Emilio Frangella", "email": "emilio@aave.com" }, { "name": "Pol Sendra", "email": "pol@aave.com" }, { "name": "Lukas Strassel", "email": "lukas@aave.com" }, { "name": "Daniel Martin", "email": "daniel@aave.com" } ], "repository": { "type": "git", "url": "git+https://github.com/aave/aave-js.git" }, "module": "dist/protocol-js.esm.js", "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist" ], "scripts": { "start": "tsdx watch", "build": "tsdx build && cp -R ./src/v2/graphql ./dist/graphql && cp -R ./src/v1/graphql ./dist/v1/graphql && cp -R ./src/v2/graphql ./dist/v2/graphql", "test": "tsdx test", "test:watch": "tsdx test --watch", "lint": "tsdx lint", "compile": "SKIP_LOAD=true hardhat compile", "release": "standard-version", "release:prod": "yarn release --message \"chore(release): Release v%s :tada:\" --skip.tag" }, "devDependencies": { "@typechain/ethers-v5": "^4.0.0", "@types/bs58": "^4.0.1", "@types/jest": "^26.0.14", "@types/node": "^12.7.5", "@typescript-eslint/eslint-plugin": "^4.9.0", "@typescript-eslint/parser": "^4.9.0", "env-cmd": "^10.1.0", "eslint-config-airbnb-typescript": "^9.0.0", "eslint-config-prettier": "^8.1.0", "eslint-plugin-import": "^2.22.0", "eslint-plugin-prettier": "^3.1.4", "ethers": "5.0.31", "hardhat": "^2.0.3", "hardhat-typechain": "^0.3.3", "husky": "^4.3.0", "jest": "^26.1.0", "prettier": "^2.2.1", "ts-generator": "^0.1.1", "ts-node": "^9.0.0", "tsdx": "^0.14.1", "tslib": "^2.0.3", "typechain": "^4.0.0", "typescript": "^4.1.2" }, "dependencies": { "axios": "^0.21.0", "bignumber.js": "^9.0.1", "bs58": "^4.0.1", "reflect-metadata": "^0.1.13", "standard-version": "^9.1.0" }, "peerDependencies": { "ethers": "^5.0.24" }, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "eslint": { "parser": "@typescript-eslint/parser", "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:import/errors", "plugin:import/warnings", "plugin:import/typescript", "plugin:prettier/recommended" ] }, "resolutions": { "**/typescript": "^4.0.5", "**/@typescript-eslint/eslint-plugin": "^4.6.1", "**/@typescript-eslint/parser": "^4.6.1" } }