@accret/api-client
Version:
A comprehensive SDK for blockchain data access via Moralis, Alchemy, and Shyft APIs
80 lines (79 loc) • 2.28 kB
JSON
{
"name": "@accret/api-client",
"version": "1.0.5",
"description": "A comprehensive SDK for blockchain data access via Moralis, Alchemy, and Shyft APIs",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"README.md"
],
"keywords": [
"blockchain",
"cryptocurrency",
"web3",
"moralis",
"alchemy",
"shyft",
"sdk",
"api"
],
"author": "Accret Labs",
"contributors": [
"Code-Parth",
"dharminnagar",
"YatharthPnwr"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/accret/accret-api-client.git"
},
"bugs": {
"url": "https://github.com/accret/accret-api-client/issues"
},
"homepage": "https://github.com/accret/accret-api-client#readme",
"peerDependencies": {
"typescript": "^5"
},
"scripts": {
"build": "npm run clean && tsc && npm run build:esm && npm run copy-package",
"build:esm": "tsc -p tsconfig.esm.json && mv dist-esm/index.js dist/index.esm.js && rm -rf dist-esm",
"clean": "rm -rf dist",
"copy-package": "node -e \"const pkg=require('./package.json'); delete pkg.scripts; delete pkg.devDependencies; pkg.main='index.js'; pkg.module='index.esm.js'; pkg.types='index.d.ts'; require('fs').writeFileSync('./dist/package.json', JSON.stringify(pkg, null, 2))\"",
"prepublishOnly": "npm run build",
"dev": "tsc --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix && prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@moralisweb3/common-evm-utils": "^2.27.2",
"@shyft-to/js": "^0.2.40",
"alchemy-sdk": "^3.6.0",
"axios": "^1.10.0",
"moralis": "^2.27.2"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"globals": "^16.2.0",
"husky": "^8.0.0",
"lint-staged": "^16.1.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{ts,js}": "eslint --cache --fix",
"*.{ts,js,css,md}": "prettier --write",
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}