UNPKG

@infy-protocol/sdk

Version:

Lend and rent any ERC721s and ERC1155s on supported mainnet and testnet.

85 lines (84 loc) 1.67 kB
{ "version": "0.0.5", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist", "src" ], "engines": { "node": ">=12" }, "scripts": { "clean": "rm -rvf dist node_modules", "start": "tsdx watch", "build": "tsdx build", "test": "tsdx test", "lint": "tsdx lint", "format": "prettier --write './src/*' './src/abi/*' './test/*'", "prepare": "tsdx build", "size": "size-limit", "analyze": "size-limit --why" }, "peerDependencies": {}, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "keywords": [ "Infy", "NFT", "Lending", "Renting", "ERC721", "ERC1155", "721", "1155", "cryptocurrencies", "blockchain", "ethereum", "eth" ], "name": "@infy-protocol/sdk", "author": "Infy Protocol", "module": "dist/sdk.esm.js", "size-limit": [ { "path": "dist/sdk.cjs.production.min.js", "limit": "10 KB" }, { "path": "dist/sdk.esm.js", "limit": "10 KB" } ], "dependencies": { "bignumber.js": "9.1.0", "ethers": "5.6.9", "typescript": "^4.2.4" }, "devDependencies": { "@size-limit/preset-small-lib": "^4.10.2", "@types/chai": "^4.2.18", "chai": "^4.3.4", "husky": "^6.0.0", "size-limit": "^4.10.2", "tsdx": "^0.14.1", "tslib": "^2.2.0" }, "resolutions": { "postcss": "^7.0.36", "glob-parent": "^5.1.2", "ws": "^7.4.6", "normalize-url": "^4.5.1", "node-notifier": "^8.0.1" } }