-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.7 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "self-optimizing-agent-coordination-response-system",
"version": "1.0.0",
"description": "The Coordinator Core is an agentic middleware service that discovers, validates, and exposes callable capabilities (“tools”) and provides the foundation for capability‑based routing, policy‑driven selection, and execution tracing across the Self‑Optimizing Agent Coordination & Response System.",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development tsx src/server.ts | pino-pretty",
"start": "node dist/server.js",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"lint": "eslint .",
"format": "prettier -w .",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@fastify/swagger": "^9.5.2",
"@fastify/swagger-ui": "^5.2.3",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"chokidar": "^4.0.3",
"dotenv": "^17.2.3",
"fastify": "^5.6.1",
"luxon": "^3.7.2",
"pino": "^9.12.0",
"pino-pretty": "^13.1.1",
"prom-client": "^15.1.3",
"yaml": "^2.8.1"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/jest": "^30.0.0",
"@types/luxon": "^3.7.1",
"@types/node": "^24.6.0",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"cross-env": "^10.1.0",
"eslint": "^9.36.0",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"supertest": "^7.1.4",
"ts-jest": "^29.4.4",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5.9.2",
"typescript-eslint": "^8.45.0"
}
}