Files
Cashu-redeem-api/package.json
Michilis 52d4735712 Update package.json with improved metadata and version bump
- Bump version to 1.1.0
- Update description to be more comprehensive
- Update repository URLs to correct GitHub username
- Add funding information
- Add new keywords (bolt11, lightning-network, payment, redemption)
- Add docs script for API documentation
- Improve overall package metadata
2025-07-15 17:43:32 +00:00

63 lines
1.5 KiB
JSON

{
"name": "cashu-redeem-api",
"version": "1.1.0",
"description": "A production-grade API for redeeming Cashu tokens (ecash) to Lightning addresses using the cashu-ts library and LNURLp protocol",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"docs": "echo \"API documentation available at http://localhost:3000/docs\""
},
"keywords": [
"cashu",
"lightning",
"bitcoin",
"ecash",
"api",
"lnurl",
"lnurlp",
"mint",
"satoshi",
"bolt11",
"lightning-network",
"payment",
"redemption"
],
"author": "Michilis",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/Michilis"
},
"dependencies": {
"@cashu/cashu-ts": "^1.1.0",
"axios": "^1.7.7",
"bolt11": "^1.4.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"eslint": "^9.9.1",
"nodemon": "^3.1.4"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Michilis/cashu-redeem-api.git"
},
"bugs": {
"url": "https://github.com/Michilis/cashu-redeem-api/issues"
},
"homepage": "https://github.com/Michilis/cashu-redeem-api#readme"
}