forked from bmpenuelas/waveform-render-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.98 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.98 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
{
"name": "waveform-render",
"displayName": "Waveform Render",
"description": "Draw timing diagram waveforms with WaveDrom inside VSCode",
"license": "MIT",
"keywords": [
"timing",
"diagram",
"waveform",
"wavedrom",
"WaveJSON"
],
"icon": "media/icon.png",
"version": "0.24.0",
"publisher": "bmpenuelas",
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Other"
],
"homepage": "https://github.com/bmpenuelas/waveform-render-vscode",
"bugs": {
"email": "bmpenuelas@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/bmpenuelas/waveform-render-vscode.git"
},
"activationEvents": [
"onCommand:waveformRender.start",
"onCommand:waveformRender.toggleLivePreview",
"onWebviewPanel:waveformRender"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "waveformRender.start",
"title": "Draw",
"category": "Waveform Render"
},
{
"command": "waveformRender.toggleLivePreview",
"title": "Toggle Live Preview",
"category": "Waveform Render"
}
],
"keybindings": [
{
"command": "waveformRender.start",
"key": "ctrl+k ctrl+d",
"when": "editorTextFocus"
},
{
"command": "waveformRender.toggleLivePreview",
"key": "ctrl+k ctrl+l",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -p ./",
"watch": "tsc -w -p ./",
"publish:marketplace": "vsce package && vsce publish",
"publish:openvsx": "bash -c \"read -p 'Enter packaged filename: ' filename && read -sp 'Enter openvsx token: ' token && echo && npx ovsx publish \\\"$filename\\\" -p \\\"$token\\\"\"",
"publish": "npm run publish:marketplace && npm run publish:openvsx"
},
"devDependencies": {
"@types/node": "^18.11.17",
"@types/vscode": "^1.65.0",
"tslint": "^6.1.3",
"typescript": "^4.9.4"
}
}