- 25 tests covering template resolution, localization fallback, variable substitution, caching, custom template registration, and edge cases - Update package.json to use vitest for test execution - All 25 tests passing Co-Authored-By: Paperclip <noreply@paperclip.ing>
28 lines
563 B
JSON
28 lines
563 B
JSON
{
|
|
"name": "@shieldai/shared-notifications",
|
|
"version": "1.0.0",
|
|
"main": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"lint": "eslint src/"
|
|
},
|
|
"dependencies": {
|
|
"resend": "^3.0.0",
|
|
"firebase-admin": "^12.0.0",
|
|
"twilio": "^4.0.0",
|
|
"zod": "^3.22.0",
|
|
"express": "^4.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.0",
|
|
"typescript": "^5.0.0",
|
|
"vitest": "^4.1.5"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|