-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.51 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
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "vsterm",
"displayName": "vsTerm — Serial Terminal",
"description": "A full-featured serial terminal for VS Code with ANSI color support, multi-format display (ASCII, HEX, decimal, binary), multi-session tabs, sequence manager, and hardware flow control. Inspired by HTerm.",
"version": "1.0.0",
"publisher": "vsterm",
"engines": {
"vscode": "^1.85.0"
},
"repository": {
"type": "git",
"url": "https://github.com/lumascet/vsTerm"
},
"license": "BSL-1.0",
"categories": [
"Other"
],
"keywords": [
"serial",
"terminal",
"uart",
"com port",
"serialport",
"embedded",
"hardware"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "vsterm.open",
"title": "vsTerm: Open Serial Terminal"
}
],
"viewsContainers": {
"panel": [
{
"id": "vsterm",
"title": "vsTerm",
"icon": "media/plug.svg"
}
]
},
"views": {
"vsterm": [
{
"type": "webview",
"id": "vsterm.mainView",
"name": "Serial Terminal"
}
]
},
"configuration": {
"title": "vsTerm",
"properties": {
"vsterm.defaultBaudRate": {
"type": "number",
"default": 115200,
"description": "Default baud rate for serial connections."
},
"vsterm.defaultNewline": {
"type": "string",
"default": "\\r\\n",
"enum": [
"\\r\\n",
"\\n",
"\\r",
"none"
],
"description": "Newline character(s) appended on send."
},
"vsterm.fontFamily": {
"type": "string",
"default": "",
"description": "Terminal font family (empty = editor font)."
},
"vsterm.fontSize": {
"type": "number",
"default": 0,
"description": "Terminal font size in px (0 = editor font size)."
},
"vsterm.timestampFormat": {
"type": "string",
"default": "HH:mm:ss.SSS",
"description": "Timestamp format string."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.85.0",
"typescript": "^5.3.0"
},
"dependencies": {
"serialport": "^12.0.0"
}
}