bnksy-sdk
Version:
67 lines (66 loc) • 1.39 kB
JSON
{
"name": "bnksy-sdk",
"version": "1.3.0",
"description": "Complete SDK for Banksy payments - Crypto, PIX, Fiat-to-Crypto, and Payouts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"test": "node integration-test.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"bnksy",
"banksy",
"payments",
"payment-gateway",
"crypto",
"cryptocurrency",
"pix",
"usdt",
"usdc",
"ethereum",
"bitcoin",
"payout",
"sdk",
"web3",
"blockchain"
],
"author": "Banksy <support@banksy.io>",
"license": "MIT",
"homepage": "https://banksy.io",
"bugs": {
"url": "https://github.com/bnksy/sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bnksy/sdk.git"
},
"dependencies": {
"ethers": "^6.14.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"tsup": "^8.0.1",
"typescript": "^5.3.0"
},
"peerDependencies": {
"ethers": "^6.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}