-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.48 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.48 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
87
88
89
90
91
92
{
"name": "interactive-cli-sandbox",
"displayName": "Interactive CLI Sandbox",
"description": "MVP VS Code extension for interactive CLI execution and help-driven UI scaffolding.",
"version": "0.0.1",
"publisher": "local-dev",
"private": true,
"engines": {
"vscode": "^1.95.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:interactiveCliSandbox.open",
"onView:interactiveCliSandbox.view"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "interactiveCliSandbox.open",
"title": "Interactive CLI Sandbox: Open"
},
{
"command": "interactiveCliSandbox.runLs",
"title": "Interactive CLI Sandbox: Run Baseline ls"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "interactiveCliSandbox",
"title": "CLI Sandbox",
"icon": "media/sandbox.svg"
}
]
},
"views": {
"interactiveCliSandbox": [
{
"type": "webview",
"id": "interactiveCliSandbox.view",
"name": "Interactive CLI Sandbox",
"icon": "media/sandbox.svg"
}
]
},
"configuration": {
"title": "Interactive CLI Sandbox",
"properties": {
"interactiveCliSandbox.defaultCommand": {
"type": "string",
"default": "ls",
"description": "Command used for baseline connectivity and initial runs."
},
"interactiveCliSandbox.helpFlag": {
"type": "string",
"default": "--help",
"description": "Flag appended to a binary for heuristic metadata scraping."
},
"interactiveCliSandbox.maxIpcHz": {
"type": "number",
"default": 60,
"minimum": 1,
"maximum": 60,
"description": "Maximum IPC flush frequency in Hz for buffered terminal output."
},
"interactiveCliSandbox.cwd": {
"type": "string",
"default": "",
"description": "Optional working directory for spawned CLI processes. Empty uses current workspace root."
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package"
},
"dependencies": {
"@vscode-elements/elements": "^2.5.1",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/vscode": "^1.95.0",
"typescript": "^5.8.2"
}
}