-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1 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
{
"name": "log-analyzer-monorepo",
"version": "1.0.0",
"private": true,
"description": "A log analyzer with web UI that parses massive log files, identifies patterns, anomalies, and root causes using GitHub Copilot SDK",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build -ws",
"dev": "concurrently \"npm run dev -w @log-analyzer/server\" \"npm run dev -w @log-analyzer/web\"",
"dev:server": "npm run dev -w @log-analyzer/server",
"dev:web": "npm run dev -w @log-analyzer/web",
"start": "npm run start -w @log-analyzer/server",
"cli": "tsx packages/core/src/cli.ts",
"typecheck": "npm run typecheck -ws --if-present"
},
"keywords": [
"log-analyzer",
"logs",
"copilot",
"github-copilot",
"ai",
"pattern-detection",
"anomaly-detection"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^25.0.9",
"concurrently": "^9.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}