forked from VHDL-LS/rust_hdl_vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
141 lines (141 loc) · 3.04 KB
/
package.json
File metadata and controls
141 lines (141 loc) · 3.04 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
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
{
"name": "vhdl-ls",
"displayName": "VHDL LS",
"description": "VHDL Language Server and Support",
"author": "Henrik Bohlin",
"publisher": "hbohlin",
"license": "SEE LICENSE IN LICENSE",
"version": "0.5.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.32.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)"
}
}
},
"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": "^5.2.7",
"@types/node": "^12.12.62",
"js-yaml": "^3.14.0",
"ts-loader": "^6.2.2",
"tslint": "^5.20.0",
"typescript": "^3.9.7",
"@vscode/vsce": "^2.15",
"webpack": "^5.46.0",
"webpack-cli": "^5.0"
}
}