-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
148 lines (148 loc) · 5.25 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
{
"name": "vscode-modern-vhdl-support",
"displayName": "Modern VHDL",
"description": "VHDL Language Support",
"publisher": "rjyoung",
"version": "1.0.6",
"license": "MIT",
"icon": "images/logo.png",
"engines": {
"vscode": "^1.50.0"
},
"main": "./out/extension.js",
"repository": {
"type": "git",
"url": "https://github.com/richjyoung/vscode-modern-vhdl.git"
},
"categories": [
"Programming Languages",
"Snippets"
],
"keywords": [
"vhdl",
"language-vhdl",
"hdl",
"vhd"
],
"activationEvents": [
"onLanguage:vhdl"
],
"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": [
{
"title": "VHDL",
"properties": {
"vhdl.suggestLibraryCase": {
"type": "string",
"scope": "resource",
"default": "upper",
"enum": [
"upper",
"lower"
],
"description": "Sets the case of inserted text for Library names."
},
"vhdl.suggestPackageCase": {
"type": "string",
"scope": "resource",
"default": "lower",
"enum": [
"upper",
"lower"
],
"description": "Sets the case of inserted text for Package names."
},
"vhdl.suggestAttributeCase": {
"type": "string",
"scope": "resource",
"default": "lower",
"enum": [
"upper",
"lower"
],
"description": "Sets the case of inserted text for Attribute names."
},
"vhdl.enableStutterDelimiters": {
"type": "boolean",
"scope": "resource",
"default": false,
"description": "Enables delimiter substitutions similar to Emacs vhdl-stutter-mode. \"editor.formatOnType\" must also be enabled."
},
"vhdl.enableStutterBrackets": {
"type": "boolean",
"scope": "resource",
"default": false,
"description": "Enables bracket substitutions similar to Emacs vhdl-stutter-mode. \"editor.formatOnType\" must also be enabled."
},
"vhdl.enableStutterComments": {
"type": "boolean",
"scope": "resource",
"default": false,
"description": "Enables comment substitutions similar to Emacs vhdl-stutter-mode. \"editor.formatOnType\" must also be enabled."
},
"vhdl.stutterCompletionsBlockWidth": {
"type": "integer",
"scope": "resource",
"default": 80,
"description": "Width of block comment elements inserted by stutter completions."
},
"vhdl.stutterCompletionsMaxWidth": {
"type": "integer",
"scope": "resource",
"default": 0,
"description": "Max width of block comment elements inserted by stutter completions. Set to zero to disable."
}
}
}
]
},
"scripts": {
"build": "npm run-script build:syntax && npm run-script build:snippets",
"build:snippets": "js-yaml ./snippets/vhdl.yml > ./snippets/vhdl.json",
"build:syntax": "js-yaml ./syntaxes/vhdl.tmLanguage.yml > ./syntaxes/vhdl.tmLanguage.json",
"compile": "tsc -p ./",
"watch": "npm run-script build && tsc -watch -p ./",
"vscode:prepublish": "npm run-script build && npm run-script compile"
},
"devDependencies": {
"@types/node": "^10.17.59",
"@types/vscode": "^1.50.0",
"js-yaml": "^3.14.1",
"tslint": "^5.20.1",
"typescript": "^3.9.9"
},
"prettier": {
"printWidth": 100,
"semi": true,
"singleQuote": true,
"tabWidth": 4
}
}