Verified: fastify-core + platform-service build (tsc); createServiceApp boot smoke handles a CORS preflight (OPTIONS -> 204 with access-control-allow-origin). Generated with [Devin](https://cli.devin.ai/docs) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
31 lines
834 B
JSON
31 lines
834 B
JSON
{
|
|
"name": "@bytelyst/mcp-server",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "ByteLyst MCP Server — exposes platform.telemetry.*, platform.diagnostics.*, extraction.*, and support.* tool namespaces",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsx watch src/server.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/server.js",
|
|
"test": "vitest run --pool forks",
|
|
"test:watch": "vitest",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@bytelyst/config": "workspace:*",
|
|
"@bytelyst/errors": "workspace:*",
|
|
"@bytelyst/fastify-core": "workspace:*",
|
|
"@fastify/cors": "^11.2.0",
|
|
"fastify": "^5.2.1",
|
|
"jose": "^5.10.0",
|
|
"zod": "^3.24.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.12.0",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.7.3",
|
|
"vitest": "^3.0.5"
|
|
}
|
|
}
|