UNPKG

kotanipay-sdk

Version:

Official Kotani Pay SDK for Node.js and Browser

63 lines (62 loc) 1.59 kB
{ "name": "kotanipay-sdk", "version": "1.0.6", "description": "Official Kotani Pay SDK for Node.js and Browser", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/types/index.d.ts", "exports": { ".": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts" } }, "files": [ "dist" ], "scripts": { "build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:types", "build:cjs": "tsc --project tsconfig.json", "build:esm": "tsc --project tsconfig.esm.json", "build:types": "tsc --project tsconfig.json --declaration --emitDeclarationOnly --outDir dist/types", "clean": "rimraf dist", "dev": "tsc --watch", "test": "jest", "lint": "eslint src --ext .ts", "lint:fix": "eslint src --ext .ts --fix" }, "keywords": [ "kotani-pay", "payments", "mobile-money", "africa", "sdk" ], "author": "Kotani Pay", "license": "MIT", "repository": { "type": "git", "url": "git+https://bitbucket.org/kotani-pay/kpapi-sdk.git" }, "bugs": { "url": "https://@bitbucket.org/kotani-pay/kpapi-sdk.git/issues" }, "homepage": "https://@bitbucket.org/kotani-pay/kpapi-sdk.git#readme", "engines": { "node": ">=16.0.0" }, "dependencies": { "axios": "^1.6.0" }, "devDependencies": { "@types/node": "^24.0.3", "rimraf": "^5.0.0", "ts-node": "^10.9.2", "tsx": "^4.20.3", "typescript": "^5.8.3" }, "peerDependencies": { "axios": "^1.6.0" } }