@asset-projects/token-balance
Version:
A library for retrieving the amount of ERC20 tokens held by a specific address.
73 lines (72 loc) • 1.9 kB
JSON
{
"version": "0.3.5",
"name": "@asset-projects/token-balance",
"description": "A library for retrieving the amount of ERC20 tokens held by a specific address.",
"author": "@asset-projects",
"bugs": {
"url": "https://github.com/asset-projects/token-balance/issues"
},
"homepage": "https://github.com/asset-projects/token-balance#readme",
"keywords": [
"asset-projects",
"ethereum",
"ERC20",
"token",
"list",
"mainnet",
"optimism",
"arbitrum",
"polygon",
"binance",
"balance",
"ERC20",
"ERC721",
"NFT"
],
"license": "MIT",
"main": "lib/src/index.js",
"module": "esm/src/index.js",
"types": "lib/src/index.d.ts",
"typings": "lib/src/index.d.ts",
"files": [
"lib/",
"esm/"
],
"scripts": {
"start": "ts-node test/index.ts",
"test": "jest",
"type-check": "tsc --pretty --noEmit",
"test-all": "yarn type-check && yarn test",
"lint": "eslint . && prettier --check .",
"format": "eslint --fix . && prettier --write .",
"build:cjs": "tsc",
"build:es": "tsc -m esNext --outDir esm",
"build": "yarn build:cjs && yarn build:es",
"prepare": "husky install"
},
"dependencies": {
"@asset-projects/ethers-wrapper": "^1.0.0-beta.4",
"@asset-projects/token-list": "^3.0.3"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.12",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"babel-jest": "^27.4.5",
"dotenv": "^10.0.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.0",
"jest": "^27.4.5",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"peerDependencies": {
"typescript": "4.5.5"
}
}