-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.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
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
{
"name": "claude-code-scroll",
"displayName": "Claude Code Scroll",
"description": "A properly scrollable transcript viewer for Claude Code sessions — fixes the broken mouse-wheel/auto-scroll behavior in Claude Code's terminal and VS Code panel.",
"version": "0.1.0",
"publisher": "founderneeds",
"engines": { "vscode": "^1.85.0" },
"categories": ["Other"],
"keywords": ["claude", "claude code", "anthropic", "scroll", "scrollback", "terminal", "ai", "transcript"],
"activationEvents": ["onView:claudeCodeScroll.view"],
"main": "./dist/extension.js",
"icon": "icon.png",
"license": "MIT",
"repository": { "type": "git", "url": "https://github.com/founderneeds/claude-code-scroll" },
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "claudeCodeScroll",
"title": "Claude Code Scroll",
"icon": "media/activitybar-icon.svg"
}
]
},
"views": {
"claudeCodeScroll": [
{
"id": "claudeCodeScroll.view",
"name": "Transcript",
"type": "webview"
}
]
},
"commands": [
{
"command": "claudeCodeScroll.refresh",
"title": "Claude Code Scroll: Refresh Transcript",
"icon": "$(refresh)"
},
{
"command": "claudeCodeScroll.configureNativeScrollback",
"title": "Claude Code Scroll: Fix Terminal Scrollback (sets CLAUDE_CODE_DISABLE_ALTERNATE_SCREEN)"
}
],
"menus": {
"view/title": [
{
"command": "claudeCodeScroll.refresh",
"when": "view == claudeCodeScroll.view",
"group": "navigation"
}
]
}
},
"scripts": {
"build": "node esbuild.js",
"watch": "node esbuild.js --watch",
"vscode:prepublish": "npm run build",
"package": "npx @vscode/vsce package",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@types/vscode": "^1.85.0",
"@vscode/vsce": "^3.2.0",
"esbuild": "^0.24.0",
"ovsx": "^0.10.0",
"typescript": "^5.6.0"
},
"dependencies": {
"marked": "^14.1.0"
}
}