-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
114 lines (114 loc) · 2.95 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
105
106
107
108
109
110
111
112
113
114
{
"name": "vcdrom",
"displayName": "VCDrom",
"version": "0.5.2",
"description": "VCD viewer for VS Code",
"main": "vcdrom-main.js",
"browser": "vcdrom-main.js",
"publisher": "drom",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Visualization"
],
"icon": "assets/logo.png",
"activationEvents": [],
"contributes": {
"customEditors": [
{
"viewType": "vcdrom.editor",
"displayName": "VCDrom editor",
"supportsMultipleEditorsPerDocument": true,
"selector": [
{
"filenamePattern": "*.waveql"
}
],
"priority": "default"
}
],
"commands": [
{
"command": "vcdrom.addVCD",
"title": "VCD -> VCDrom"
},
{
"command": "vcdrom.addLST",
"title": "LST -> VCDrom"
}
],
"menus": {
"explorer/context": [
{
"command": "vcdrom.addVCD",
"when": "resourceExtname == .vcd",
"group": "3_compare"
},
{
"command": "vcdrom.addLST",
"when": "resourceExtname == .lst",
"group": "3_compare"
}
]
},
"languages": [
{
"id": "waveql",
"extensions": [
".waveql"
]
}
]
},
"files.associations": {
"*.waveql": "waveql"
},
"scripts": {
"test": "eslint lib/*.js",
"browserifyView": "browserify -x vscode lib/vcdrom-view.js > vcdrom-view.js",
"browserifyMain": "browserify -x vscode --standalone vcdrom lib/vcdrom-main.js > vcdrom-main.js",
"build": "npm run browserifyView && npm run browserifyMain",
"watchifyView": "watchify -x vscode lib/vcdrom-view.js -o vcdrom-view.js -v",
"watchifyMain": "watchify -x vscode --standalone vcdrom lib/vcdrom-main.js -o vcdrom-main.js -v",
"watch": "npm run watchifyView & npm run watchifyMain"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wavedrom/vscode-vcdrom.git"
},
"author": "WaveDrom",
"license": "MIT",
"bugs": {
"url": "https://github.com/wavedrom/vscode-vcdrom/issues"
},
"homepage": "https://github.com/wavedrom/vscode-vcdrom#readme",
"devDependencies": {
"@drom/eslint-config": "^0.12.0",
"@vscode/test-web": "^0.0.63",
"@wavedrom/doppler": "^1.13.0",
"browserify": "^17.0.1",
"eslint": "^8.57.1",
"onml": "^2.1.0",
"style-mod": "^4.1.2",
"vcd-stream": "^1.5.0",
"watchify": "^4.0.0",
"waveql": "^1.8.0"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint8/node12"
},
"__metadata": {
"id": "30746868-0e7e-4363-872c-6e3ecbc49bbe",
"publisherId": "a3b2880c-846b-4e8f-913b-1e14ddad6403",
"publisherDisplayName": "Aliaksei Chapyzhenka",
"targetPlatform": "undefined",
"isApplicationScoped": false,
"updated": true,
"isPreReleaseVersion": false,
"installedTimestamp": 1707953676061,
"pinned": false,
"preRelease": false,
"hasPreReleaseVersion": false
}
}