learning_ai_common_plat/packages/fastify-sse/package.json
saravanakumardb1 ac6d1e0911 chore(fastify-sse): add vitest devDependency
Package was running tests via workspace-hoisted vitest but had no
explicit devDependency. Adds vitest ^3.0.0 for standalone build
correctness.
2026-03-29 12:54:27 -07:00

31 lines
665 B
JSON

{
"name": "@bytelyst/fastify-sse",
"version": "0.3.0",
"description": "Fastify plugin for Server-Sent Events (SSE) — real-time push for ByteLyst product backends",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "vitest run --pool forks"
},
"peerDependencies": {
"fastify": "^5.0.0"
},
"devDependencies": {
"vitest": "^3.0.0"
},
"publishConfig": {
"registry": "http://localhost:3300/api/packages/bytelyst/npm/"
}
}