- Restructure backend with cleaner module organization - Move gift-cards, segpay, webhooks to proper locations - Add payments frontend package - Add providers abstraction layer 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
36 lines
990 B
JSON
36 lines
990 B
JSON
{
|
|
"name": "@lilith/payments",
|
|
"version": "0.0.1",
|
|
"description": "Payment processing for lilith-platform (Segpay integration)",
|
|
"author": "The Collective",
|
|
"license": "UNLICENSED",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "./index.ts",
|
|
"types": "./index.ts",
|
|
"exports": {
|
|
".": "./index.ts",
|
|
"./providers": "./providers/index.ts",
|
|
"./frontend": "./frontend/index.ts",
|
|
"./frontend/*": "./frontend/*.ts",
|
|
"./backend": "./backend/index.ts",
|
|
"./backend/*": "./backend/*.ts"
|
|
},
|
|
"dependencies": {
|
|
"@nestjs/axios": "^3.0.0",
|
|
"@nestjs/common": "^11.0.0",
|
|
"@nestjs/config": "^3.0.0",
|
|
"@nestjs/core": "^11.0.0",
|
|
"@tanstack/react-query": "^5.0.0",
|
|
"@lilith/api-client": "workspace:^",
|
|
"@lilith/react-query-utils": "workspace:^",
|
|
"axios": "^1.6.0",
|
|
"react": "^19.0.0",
|
|
"rxjs": "^7.8.1",
|
|
"styled-components": "^6.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^19.0.0",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|