xrocket-pay-api-sdk
Version:
TypeScript SDK for xRocket Pay API
63 lines (62 loc) • 2.26 kB
JSON
{
"name": "xrocket-pay-api-sdk",
"version": "1.0.7",
"description": "TypeScript SDK for xRocket Pay API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"test:unit": "jest --testPathIgnorePatterns=e2e",
"test:e2e": "jest --testPathPattern=e2e",
"dev": "tsc --watch",
"example:invoice:create": "ts-node examples/invoices/create-invoice.ts",
"example:invoice:get": "ts-node examples/invoices/get-invoice.ts",
"example:invoice:list": "ts-node examples/invoices/list-invoices.ts",
"example:invoice:delete": "ts-node examples/invoices/delete-invoice.ts",
"example:invoice:multi": "ts-node examples/invoices/create-multi-invoices.ts",
"example:invoice:webhook": "ts-node examples/invoices/webhook-express-server.ts",
"example:cheque:create": "ts-node examples/cheques/create-cheque.ts",
"example:cheque:get": "ts-node examples/cheques/get-cheque.ts",
"example:cheque:list": "ts-node examples/cheques/list-cheques.ts",
"example:cheque:update": "ts-node examples/cheques/update-cheque.ts",
"example:cheque:delete": "ts-node examples/cheques/delete-cheque.ts",
"example:transfer:create": "ts-node examples/transfers/create-transfer.ts",
"example:withdrawal:create": "ts-node examples/withdrawals/withdrawal.ts",
"example:withdrawal:status": "ts-node examples/withdrawals/check-withdrawal-status.ts",
"example:withdrawal:fees": "ts-node examples/withdrawals/get-withdrawal-fees.ts",
"example:app:info": "ts-node examples/app/get-app-info.ts",
"example:app:currencies": "ts-node examples/app/get-available-currencies.ts"
},
"keywords": [
"xrocket",
"pay",
"api",
"sdk",
"typescript",
"invoice",
"multicheque",
"transfer",
"withdrawal",
"webhook",
"telegram"
],
"author": "xRocket",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/xrocket-tg/xrocket-pay-ts-sdk"
},
"dependencies": {
"axios": "^1.6.7",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}