-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 997 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 997 Bytes
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
{
"name": "overwatch",
"version": "1.0.0",
"description": "AI-native autonomous incident commander for runtime crash triage and postmortem generation.",
"type": "commonjs",
"main": "dist/runner.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/runner.js",
"start:watchdog": "npm run build && node dist/runner.js",
"demo": "npm run build && node dist/runner.js",
"demo:offline": "npm run build && node dist/offline_demo.js",
"dashboard": "npm run build && node dist/dashboard_server.js",
"validate": "npm run build && node dist/runner.js --dry-run",
"target": "node target_app.js"
},
"keywords": [
"incident-response",
"ai-native",
"cursor",
"reliability",
"postmortem",
"mttr"
],
"author": "Project Overwatch",
"license": "MIT",
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^20.12.12",
"typescript": "^5.4.5"
},
"dependencies": {
"express": "^5.2.1"
}
}