-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.55 KB
/
package.json
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
{
"name": "serial-monitor",
"displayName": "Web and Desktop Serial Monitor",
"description": "Views serial port output on desktop or web",
"version": "1.0.2",
"publisher": "eclipse-cdt",
"author": "Rob Moran <[email protected]>",
"license": "EPL-2.0",
"main": "dist/desktop/extension.js",
"browser": "dist/browser/extension.js",
"repository": "https://github.com/eclipse-cdt-cloud/vscode-serial-monitor",
"qna": "https://github.com/eclipse-cdt-cloud/vscode-serial-monitor/issues",
"icon": "media/cdtcloud.png",
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Other"
],
"keywords": [
"serial",
"port",
"monitor",
"webserial",
"devices",
"embedded",
"microcontroller"
],
"scripts": {
"prepare": "yarn build",
"clean": "git clean -f -x ./node_modules ./dist",
"build": "webpack --mode production && yarn lint",
"watch": "webpack -w",
"lint": "eslint . --ext .ts,.tsx",
"package": "vsce package --yarn",
"serve": "serve --cors -p 9876"
},
"dependencies": {
"serialport": "^12.0.0"
},
"devDependencies": {
"@types/node": "^22.7.7",
"@types/vscode": "^1.63.0",
"@types/w3c-web-serial": "^1.0.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vscode/vsce": "^3.2.0",
"eslint": "^8.57.1",
"serve": "^14.2.4",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"contributes": {
"commands": [
{
"command": "serial-monitor.openSerial",
"title": "Open Serial",
"icon": "$(console)"
}
],
"configuration": {
"title": "Serial Monitor",
"properties": {
"serial-monitor.defaultBaud": {
"type": "string",
"enum": [
"600",
"1200",
"1800",
"2400",
"4800",
"9600",
"19200",
"38400",
"57600",
"115200"
],
"default": "9600",
"description": "Specify the default baudrate when opening a serial port"
},
"serial-monitor.loggingVerbosity": {
"type": "string",
"enum": [
"off",
"error",
"warn",
"info",
"debug"
],
"default": "warn",
"description": "Specify the logging verbosity of the extension"
}
}
}
},
"activationEvents": [
"onStartupFinished"
],
"extensionKind": [
"ui"
]
}