-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.78 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
{
"name": "@nomadop/session-watcher",
"version": "0.7.0",
"description": "Local Claude Code context-cost monitor, transcript replay, buckets, and handoff",
"type": "module",
"license": "MIT",
"author": "Longju Cheng",
"repository": {
"type": "git",
"url": "git+https://github.com/nomadop/session-watcher.git"
},
"homepage": "https://nomadop.github.io/session-watcher/",
"bugs": {
"url": "https://github.com/nomadop/session-watcher/issues"
},
"keywords": [
"claude-code",
"context-window",
"prompt-caching",
"transcript-replay",
"handoff",
"mcp",
"developer-tools"
],
"bin": {
"session-watcher": "./dist/bin/session-watcher.js"
},
"files": [
"dist/bin/",
"dist/public/",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "node scripts/build.js",
"docs:build": "node scripts/build-pages.mjs",
"docs:preview": "node scripts/build-pages.mjs && npx -y serve .pages",
"test": "node --test \"test/**/*.test.js\"",
"test:watch": "node --test --watch \"test/**/*.test.js\"",
"start": "node server.js",
"e2e": "playwright test"
},
"engines": {
"node": ">=22.16.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"express": "^4.19.2",
"ignore": "^7.0.6",
"web-tree-sitter": "^0.26.11",
"zod": "^3.23.8"
},
"devDependencies": {
"@playwright/test": "^1.45.0",
"esbuild": "^0.28.1",
"github-slugger": "^2.0.0",
"katex": "^0.17.0",
"marked": "^18.0.7",
"marked-katex-extension": "^5.1.10",
"tree-sitter-javascript": "^0.25.0",
"tree-sitter-python": "^0.25.0",
"tree-sitter-typescript": "^0.23.2"
},
"overrides": {
"tree-sitter-javascript": "$tree-sitter-javascript"
}
}