UNPKG

upiqrcode

Version:

Unofficial UPI QR code generator for Node.js with TypeScript support. Educational project - not affiliated with NPCI or financial institutions.

55 lines (54 loc) 1.3 kB
{ "name": "upiqrcode", "version": "1.0.5", "description": "Unofficial UPI QR code generator for Node.js with TypeScript support. Educational project - not affiliated with NPCI or financial institutions.", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "build": "tsc", "test": "node src/test.js", "example": "node examples/basic-usage.js", "prepublishOnly": "npm run build" }, "repository": { "type": "git", "url": "git+https://github.com/Pratyay360/upiqrcode.git" }, "bugs": { "url": "https://github.com/Pratyay360/upiqrcode/issues" }, "funding": { "type": "upi", "url": "https://pratyayupi.vercel.app/" }, "homepage": "https://github.com/Pratyay360/upiqrcode#readme", "keywords": [ "upi", "qrcode", "nodejs", "unofficial-npci", "upiqrcode", "upi qrcode", "upi qr code", "payment", "india", "typescript", "educational" ], "author": "Pratyay Mitra Mustafi <pratyaymustafi@outlook.com> (https://pratyay.vercel.app/)", "license": "GPL-3.0", "engines": { "node": ">=18.0.0", "pnpm": ">=8.0.0" }, "devDependencies": { "typescript": "^5.8.3" }, "files": [ "lib/**/*" ], "dependencies": { "@types/qrcode": "^1.5.5", "qrcode": "^1.5.4" } }