-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.24 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.24 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
{
"name": "runwhy",
"version": "0.5.0",
"description": "RunWhy: local flight recorder and time diagnosis for AI coding agents.",
"license": "MIT",
"private": false,
"author": "Coratch",
"repository": {
"type": "git",
"url": "git+https://github.com/Coratch/runwhy.git"
},
"bugs": {
"url": "https://github.com/Coratch/runwhy/issues"
},
"homepage": "https://coratch.github.io/runwhy/",
"keywords": [
"agent",
"agent-session",
"agent-diagnosis",
"agent-flight-recorder",
"ai-coding",
"ai-observability",
"claude-code",
"claude-code-session",
"claude-session-viewer",
"codex",
"codex-cli",
"codex-session-viewer",
"developer-tools",
"jsonl",
"jsonl-viewer",
"local-first",
"observability",
"recap",
"runwhy",
"session-replay",
"session-viewer",
"tool-calls"
],
"type": "commonjs",
"engines": {
"node": ">=18"
},
"bin": {
"runwhy": "bin/runwhy.js",
"agent-session-viewer": "bin/agent-session-viewer.js"
},
"scripts": {
"check": "node --check bin/runwhy.js && node --check bin/agent-session-viewer.js && node --check src/cli.js && node --check src/server.js && node --check src/recap.js && node --check src/exporter.js && node --check src/redaction.js && node --check public/app.js && npm run web:check && node scripts/scan-sensitive.js",
"pack:check": "npm pack --dry-run",
"start": "node src/cli.js",
"test": "node --test",
"web:build": "vite build --config web/vite.config.ts",
"web:check": "tsc -p web/tsconfig.json --noEmit",
"web:dev": "vite --config web/vite.config.ts"
},
"publishConfig": {
"access": "public"
},
"files": [
"bin/",
"docs/assets/",
"docs/index.html",
"docs/demo-web.html",
"docs/site.css",
"docs/demo.md",
"docs/issue-pr-recap-example.md",
"docs/post-release-metrics.md",
"examples/fixtures/",
"src/",
"public/",
"web/dist/",
"README.md",
"LICENSE"
],
"devDependencies": {
"@tanstack/react-virtual": "^3.13.24",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.7.3",
"vite": "^6.4.2"
}
}