- Add @shieldai/removebrokers workspace dependency to API package.json - Fix misleading error message: 'Admin access required' -> 'Support access required' - Export RemovalRequest, InfoBroker, BrokerListing types from @shieldai/db - Export RemovalStatus, RemovalMethod, BrokerCategory enums from @shieldai/db - Fix BrokerAlertPipeline: correlationPipeline -> correlationService.ingestGenericAlert - Add @shieldai/correlation dependency to removebrokers package - Fix removalUrl null vs undefined type mismatch in RemoveBrokersService - Fix shared-billing package.json typo: @shieldsai -> @shieldai for shared-notifications
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"name": "@shieldai/api",
|
|
"version": "0.1.0",
|
|
"scripts": {
|
|
"dev": "tsx watch src/server.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/server.js",
|
|
"test": "vitest run",
|
|
"test:coverage": "vitest run --coverage",
|
|
"lint": "eslint src/"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/cors": "^10.0.1",
|
|
"@fastify/helmet": "^13.0.1",
|
|
"@fastify/multipart": "^7.7.3",
|
|
"@fastify/rate-limit": "^9.0.0",
|
|
"@fastify/sensible": "^6.0.1",
|
|
"fastify-raw-body": "^5.0.0",
|
|
"@fastify/swagger": "^9.4.0",
|
|
"@fastify/swagger-ui": "^5.2.0",
|
|
"@shieldai/correlation": "workspace:*",
|
|
"@shieldai/db": "workspace:*",
|
|
"@shieldai/monitoring": "workspace:*",
|
|
"@shieldai/removebrokers": "workspace:*",
|
|
"@shieldai/report": "workspace:*",
|
|
"@shieldsai/shared-auth": "workspace:*",
|
|
"@shieldai/shared-notifications": "workspace:*",
|
|
"@shieldai/types": "workspace:*",
|
|
"@shieldai/voiceprint": "workspace:*",
|
|
"bullmq": "^5.24.0",
|
|
"fastify": "^5.2.0",
|
|
"ioredis": "^5.4.0",
|
|
"jsonwebtoken": "^9.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@vitest/coverage-v8": "^4.1.5",
|
|
"vitest": "^4.1.5"
|
|
}
|
|
}
|