forked from VHDL-LS/rust_hdl_vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 1.76 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
{
"name": "rust-hdl-vscode",
"description": "Rust HDL IDE",
"author": "Henrik Bohlin",
"license": "SEE LICENSE IN LICENSE",
"version": "0.0.1",
"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.23.0"
},
"activationEvents": [
"onLanguage:vhdl"
],
"main": "./client/out/extension",
"contributes": {
"languages": [
{
"id": "vhdl",
"aliases": [
"VHDL",
"vhdl"
],
"extensions": [
".vhd",
".vhdl",
".vho"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "vhdl",
"scopeName": "source.vhdl",
"path": "./syntaxes/vhdl.tmLanguage.json"
}
],
"snippets": [
{
"language": "vhdl",
"path": "./snippets/vhdl.json"
}
],
"configuration": {
"type": "object",
"title": "VHDL",
"properties": {
"rustHdl.languageServerBinary": {
"type": "string",
"enum": [
"Extension",
"SystemPath",
"Docker"
],
"description": "Method to find language server executable, Docker option is NOT supported on Windows.\nChanging this option requires a restart of VSCODE"
}
}
}
},
"scripts": {
"vscode:prepublish": "cd client && npm run update-vscode && cd .. && npm run compile",
"compile": "cd client && tsc -b && cd ..",
"watch": "cd client && tsc -b -w && cd ..",
"postinstall": "cd client && npm install && cd ..",
"test": "sh ./scripts/e2e.sh"
},
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/node": "^8.10.45",
"tslint": "^5.14.0",
"typescript": "^3.3.4000"
}
}