netopia-client
Version:
A fully-typed, TypeScript-based client for the Netopia payments API V2.
40 lines (39 loc) • 917 B
JSON
{
"name": "netopia-client",
"description": "A fully-typed, TypeScript-based client for the Netopia payments API V2.",
"version": "0.0.5",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "npx rimraf dist",
"publish:major": "npm version major && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:patch": "npm version patch && npm publish",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"netopia",
"mobilpay",
"payments",
"typeScript",
"client"
],
"author": "Bogdan Nita",
"license": "MIT",
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"zod": "^3.23.8"
},
"devDependencies": {
"typescript": "^5.6.3",
"@types/axios": "^0.9.36",
"@types/node": "^22.8.4"
}
}