forked from adamint/tlv-vscode
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 1.73 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
{
"name": "TL-Verilog",
"description": "TL-Verilog support for VS Code",
"version": "1.0.2",
"publisher": "Dmytro",
"repository": {
"type": "git",
"url": "https://github.com/Dima4ka/tlv-vscode"
},
"engines": {
"vscode": "^1.10.0"
},
"categories": [
"Languages",
"Themes"
],
"contributes": {
"languages": [{
"id": "tlverilog",
"aliases": ["TL Verilog", "tlverilog", "tl-verilog"],
"extensions": [".tlv", ".TLV"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "tlverilog",
"scopeName": "source.tlverilog",
"path": "./syntaxes/tlverilog.tmLanguage"
}],
"snippets": [{
"language": "tlverilog",
"path": "./snippets/snippets.json"
}],
"configuration": {
"title": "",
"properties": {
"tlverilog.instancePrefix": {
"type": "string",
"default": "u_",
"description": "The prefix to use when instantiating a new module"
}
}
},
"commands": [{
"command": "extension.tlverilog.instantiateModule",
"title": "TL Verilog: Instantiate Module"
}],
"themes": [
{
"label": "TL Verilog Light",
"uiTheme": "vs",
"path": "./themes/tlverilog-color-theme.json"
},
{
"label": "TL Verilog Dark",
"uiTheme": "vs-dark",
"path": "./themes/tl-verilog-dark-theme.json"
}
]
},
"activationEvents": [
"onLanguage:tlverilog"
],
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "*",
"@types/vscode": "^1.91.0",
"typescript": "^2.0.3",
"vsce": "^1.28.0",
"vscode": "^1.0.0"
},
"dependencies": {
"axios": "^1.7.2",
"verilator": "^0.1.0"
}
}