-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.72 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
{
"name": "vscode-command-cli",
"displayName": "VS Code Command CLI",
"description": "Trigger VS Code commands from an external terminal through a lightweight localhost HTTP bridge.",
"version": "0.0.2",
"publisher": "zero",
"license": "MIT",
"private": true,
"keywords": [
"vscode",
"command",
"cli",
"localhost"
],
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "vscodeCommandCli.restartServer",
"title": "VS Code Command CLI: Restart Server"
},
{
"command": "vscodeCommandCli.showServerInfo",
"title": "VS Code Command CLI: Show Server Info"
}
],
"configuration": {
"title": "VS Code Command CLI",
"properties": {
"vscodeCommandCli.serverPort": {
"type": "number",
"default": 0,
"minimum": 0,
"maximum": 65535,
"description": "Localhost port used by the command execution HTTP server. Use 0 to let the OS choose a free dynamic port."
},
"vscodeCommandCli.enableLog": {
"type": "boolean",
"default": true,
"description": "Write request and server lifecycle logs to the VS Code Command CLI output channel."
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "npm run compile && vsce package --allow-missing-repository",
"lint": "tsc --noEmit -p ./"
},
"devDependencies": {
"@types/node": "^20.14.10",
"@types/vscode": "^1.90.0",
"@vscode/vsce": "^2.32.0",
"typescript": "^5.4.5"
}
}