-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.82 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.82 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@onestepat4time/aegis",
"version": "0.5.3-alpha",
"type": "module",
"description": "Orchestrate Claude Code sessions via API. Create, brief, monitor, refine, ship.",
"main": "dist/server.js",
"types": "dist/server.d.ts",
"exports": {
".": {
"import": "./dist/server.js",
"types": "./dist/server.d.ts"
},
"./cli": {
"import": "./dist/cli.js"
}
},
"bin": {
"aegis": "dist/cli.js"
},
"files": [
"dist",
"!dist/__tests__",
"!dist/**/*.map"
],
"scripts": {
"build": "tsc && npm run build:copy-dashboard",
"build:copy-dashboard": "node scripts/copy-dashboard.mjs",
"build:dashboard": "cd dashboard && npm ci && npm run build",
"docs": "typedoc",
"start": "node dist/cli.js",
"dev": "tsc && node dist/cli.js",
"prepublishOnly": "npm run build:dashboard && npm run build",
"test": "vitest run",
"test:smoke": "node scripts/uat-smoke.mjs",
"test:fault-harness": "vitest run src/__tests__/fault-injection-harness-901.test.ts",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write src scripts"
},
"keywords": [
"claude",
"claude-code",
"ai",
"orchestration",
"coding-agent",
"tmux",
"session-management"
],
"author": "Emanuele Santonastaso (@OneStepAt4time)",
"license": "MIT",
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/static": "^9.0.0",
"@fastify/websocket": "^11.2.0",
"@modelcontextprotocol/sdk": "^1.28.0",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/auto-instrumentations-node": "^0.72.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.214.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.214.0",
"@opentelemetry/sdk-node": "^0.214.0",
"@opentelemetry/sdk-trace-base": "^2.6.1",
"@types/nodemailer": "^8.0.0",
"async-mutex": "^0.5.0",
"fastify": "^5.8.2",
"nodemailer": "^8.0.5",
"prom-client": "^15.1.3",
"zod": "^4.3.6"
},
"overrides": {
"zod": "^4.3.6"
},
"repository": {
"type": "git",
"url": "https://github.com/OneStepAt4time/aegis.git"
},
"homepage": "https://github.com/OneStepAt4time/aegis#readme",
"bugs": {
"url": "https://github.com/OneStepAt4time/aegis/issues"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.2",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"lockfile-lint": "5.0.0",
"prettier": "^3.8.1",
"ts-morph": "^27.0.2",
"typedoc": "^0.28.18",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vitest": "^4.1.2"
}
}