2026-02-12 05:27:49 -08:00
|
|
|
{
|
|
|
|
|
"name": "@lilith/email-client",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"private": true,
|
|
|
|
|
"type": "module",
|
|
|
|
|
"description": "Email client for sending emails through the centralized email service internal API",
|
|
|
|
|
"author": {
|
|
|
|
|
"name": "QuinnFTW",
|
2026-04-12 10:45:05 -07:00
|
|
|
"email": "quinn@ftw.codes",
|
2026-02-12 05:27:49 -08:00
|
|
|
"url": "https://github.com/transquinnftw"
|
|
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/transquinnftw/lilith-platform.git"
|
|
|
|
|
},
|
|
|
|
|
"main": "./dist/index.js",
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"import": "./dist/index.js"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
|
"build": "lixbuild",
|
|
|
|
|
"test": "vitest run",
|
2026-02-19 10:18:58 -08:00
|
|
|
"lint": "eslint src"
|
2026-02-12 05:27:49 -08:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@lilith/service-registry": "^1.3.0",
|
|
|
|
|
"@nestjs/common": "11.1.11",
|
|
|
|
|
"@nestjs/config": "^4.0.2",
|
|
|
|
|
"axios": "^1.9.0"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@lilith/lix-configs": "^1.0.1",
|
|
|
|
|
"@types/node": "^20.19.30",
|
|
|
|
|
"tsup": "^8.5.1",
|
|
|
|
|
"typescript": "^5.9.3",
|
|
|
|
|
"vitest": "^4.0.17"
|
|
|
|
|
}
|
|
|
|
|
}
|