-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1019 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 1019 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "workspace-heatmap",
"version": "0.6.6",
"description": "Track and visualize which files your AI agent actually reads. Heatmap your workspace.",
"type": "module",
"bin": {
"workspace-heatmap": "bin/cli.mjs",
"whm": "bin/cli.mjs"
},
"exports": {
".": "./src/index.mjs",
"./tracker": "./src/tracker.mjs"
},
"files": [
"bin/",
"src/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"keywords": [
"ai",
"agent",
"workspace",
"heatmap",
"claude-code",
"openclaw",
"observability",
"file-tracking",
"file-access",
"analytics",
"insights",
"developer-tools"
],
"author": "Sorin Guga <sorin@guga.ro>",
"license": "MIT",
"homepage": "https://github.com/fulf/workspace-heatmap#readme",
"bugs": {
"url": "https://github.com/fulf/workspace-heatmap/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fulf/workspace-heatmap.git"
},
"engines": {
"node": ">=18"
}
}