- Fork elmeg-demo codebase for multi-band support - Add data importer infrastructure with base class - Create band-specific importers: - phish.py: Phish.net API v5 - grateful_dead.py: Grateful Stats API - setlistfm.py: Dead & Company, Billy Strings (Setlist.fm) - Add spec-kit configuration for Gemini - Update README with supported bands and architecture
33 lines
810 B
JSON
33 lines
810 B
JSON
{
|
|
"name": "@elmeg/email-service",
|
|
"version": "1.0.0",
|
|
"description": "Transactional email service for Elmeg using AWS SES v2",
|
|
"main": "dist/email-service.js",
|
|
"types": "dist/email-service.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "jest",
|
|
"deploy-templates": "ts-node scripts/deploy-templates.ts"
|
|
},
|
|
"keywords": [
|
|
"email",
|
|
"ses",
|
|
"aws",
|
|
"transactional"
|
|
],
|
|
"author": "Elmeg",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@aws-sdk/client-sesv2": "^3.956.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.0",
|
|
"@types/node": "^20.19.27",
|
|
"jest": "^29.7.0",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|