-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.02 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.02 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
{
"name": "reactor-preview",
"displayName": "Reactor Preview",
"description": "Live preview panel for Reactor components — shows a streaming thumbnail of the native WinUI preview window",
"version": "0.1.0",
"publisher": "reactor",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "reactor.preview",
"title": "Reactor: Preview Component"
},
{
"command": "reactor.previewConnect",
"title": "Reactor: Connect to Preview"
},
{
"command": "reactor.previewStop",
"title": "Reactor: Stop Preview"
},
{
"command": "reactor.previewFocus",
"title": "Reactor: Focus Preview Window"
}
]
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/vscode": "^1.118.0",
"@types/node": "^25.6.2",
"typescript": "^6.0.3"
}
}