forked from VHDL-LS/rust_hdl_vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
154 lines (154 loc) · 3.44 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "vhdl-ls",
"displayName": "VHDL LS",
"description": "VHDL Language Server and Support",
"author": "Henrik Bohlin",
"publisher": "hbohlin",
"license": "SEE LICENSE IN LICENSE",
"version": "0.7.0",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/Bochlin/rust_hdl_vscode"
},
"categories": [
"Programming Languages",
"Snippets"
],
"keywords": [
"VHDL",
"vhdl",
"language-vhdl",
"hdl",
"rust_hdl",
"ide",
"vhdl_ls"
],
"engines": {
"vscode": "^1.75.0"
},
"activationEvents": [
"onLanguage:vhdl",
"onCommand:vhdlls.restart"
],
"main": "./dist/extension",
"contributes": {
"languages": [
{
"id": "vhdl",
"aliases": [
"VHDL",
"vhdl"
],
"extensions": [
".vhd",
".vhdl",
".vho"
],
"configuration": "./language-configuration.json"
}
],
"configurationDefaults": {
"[vhdl]": {
"files.encoding": "iso88591"
}
},
"grammars": [
{
"language": "vhdl",
"scopeName": "source.vhdl",
"path": "./syntaxes/vhdl.tmLanguage"
}
],
"snippets": [
{
"language": "vhdl",
"path": "./snippets/vhdl.json"
}
],
"configuration": {
"type": "object",
"title": "VHDL",
"properties": {
"vhdlls.languageServer": {
"description": "Language server location. Changing this option requires a restart.",
"type": "string",
"default": "embedded",
"enum": [
"embedded",
"user",
"systemPath",
"docker"
],
"enumDescriptions": [
"Use language server embedded in extension.",
"Use custom path vhdlls.languageServerUserPath",
"Run vhdl_ls from system path.",
"Use kraigher/vhdl_ls:latest image from Docker Hub"
]
},
"vhdlls.languageServerUserPath": {
"description": "Path to vhdl_ls language server executable, used when vhdlls.languageServer = \"user\"",
"type": "string"
},
"vhdlls.trace.server": {
"type": "string",
"scope": "window",
"enum": [
"off",
"messages",
"verbose"
],
"enumDescriptions": [
"No traces",
"Error only",
"Full log"
],
"default": "off",
"description": "Trace requests to the vhdl_ls language server (this is usually overly verbose and not recommended for regular users)"
},
"vhdlls.nonProjectFiles": {
"type": "string",
"description": "Defines how the server handles files that are not part of the vhdl_ls.toml configuration file",
"enum": [
"ignore",
"analyze"
],
"enumDescriptions": [
"Ignore any non-project file",
"Add the file to an anonymous library and analyze that file"
],
"default": "analyze"
}
}
},
"commands": [
{
"command": "vhdlls.restart",
"title": "Restart VHDL LS",
"category": "VHDL LS"
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "cd client && tsc -b && cd ..",
"watch": "cd client && tsc -b -w && cd ..",
"postinstall": "cd client && npm install && cd ..",
"test": "sh ./scripts/e2e.sh",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"test-compile": "tsc -p ./"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.7",
"@vscode/vsce": "^2.26.0",
"js-yaml": "^4.1.0",
"ts-loader": "^9.5.1",
"tslint": "^6.1.3",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}