28 lines
579 B
JSON
28 lines
579 B
JSON
{
|
|
"name": "@bytelyst/backend-telemetry",
|
|
"version": "0.1.5",
|
|
"description": "In-memory telemetry event buffer for Fastify product backends",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run --pool forks",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.7.3",
|
|
"vitest": "^3.0.5"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
]
|
|
}
|