43 lines
1 KiB
JSON
43 lines
1 KiB
JSON
{
|
|
"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",
|
|
"email": "quinn@ftw.codes",
|
|
"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",
|
|
"lint": "eslint src"
|
|
},
|
|
"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"
|
|
}
|
|
}
|