-
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) · 1000 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1000 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": "opsremedy",
"version": "0.0.1",
"private": true,
"type": "module",
"description": "AI SRE investigation agent for GCP Logs, Prometheus, Jaeger, and Kubernetes",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun run --filter '*' build",
"check": "biome check .",
"format": "biome format --write .",
"lint": "biome lint .",
"test": "bun test",
"investigate": "bun run --cwd packages/cli src/main.ts investigate",
"bench": "bun run --cwd packages/cli src/main.ts bench"
},
"dependencies": {
"@mariozechner/pi-agent-core": "0.70.5",
"@mariozechner/pi-ai": "0.70.5",
"@opsremedy/bench": "workspace:*",
"@opsremedy/cli": "workspace:*",
"@opsremedy/clients": "workspace:*",
"@opsremedy/core": "workspace:*",
"@opsremedy/tools": "workspace:*",
"typebox": "1.1.34"
},
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@types/bun": "1.3.13",
"typescript": "6.0.3"
}
}