-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
173 lines (173 loc) · 4.74 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
{
"name": "elm-land",
"displayName": "Elm Land",
"description": "A fast, reliable, and customizable plugin for the Elm language.",
"version": "0.3.0",
"icon": "src/elm-land-plugin.png",
"publisher": "elm-land",
"repository": "https://github.com/elm-land/vscode",
"engines": {
"vscode": "^1.74.0"
},
"scripts": {
"start": "npm install && npm run watch",
"build": "npm run build:elm && npm run build:typescript",
"build:elm": "node build.js",
"build:typescript": "tsc",
"watch": "npm run build && npm run watch:typescript",
"watch:typescript": "tsc -w",
"package": "vsce package",
"vscode:prepublish": "npm run build"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"workspaceContains:**/elm.json"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"category": "Elm Land",
"title": "Browse Elm package documentation",
"command": "elmLand.browsePackageDocs",
"enablement": "false"
},
{
"category": "Elm Land",
"title": "Convert Html to Elm",
"command": "elmLand.htmlToElm",
"enablement": "false"
},
{
"category": "Elm Land",
"title": "Install Elm",
"command": "elmLand.installElm",
"enablement": "false"
},
{
"category": "Elm Land",
"title": "Install elm-format",
"command": "elmLand.installElmFormat",
"enablement": "false"
}
],
"configurationDefaults": {
"[elm]": {
"editor.tabSize": 4,
"editor.formatOnSave": true,
"editor.wordBasedSuggestions": "off"
}
},
"configuration": [
{
"title": "Elm Land",
"properties": {
"elmLand.entrypointFilepaths": {
"order": 0,
"description": "The filepath to your project's Main module, relative to the elm.json file.",
"type": "array",
"default": [
"src/Main.elm",
".elm-land/src/Main.elm"
]
},
"elmLand.feature.jumpToDefinition": {
"order": 1,
"description": "Enable the 'Jump-to-definition' feature",
"type": "boolean",
"default": true
},
"elmLand.feature.errorHighlighting": {
"order": 3,
"description": "Enable the 'Error Highlighting' feature",
"type": "boolean",
"default": true
},
"elmLand.feature.offlinePackageDocs": {
"order": 4,
"description": "Settings for the 'Offline Package Docs' feature",
"type": "string",
"enum": [
"Enabled",
"Imports only",
"Disabled"
],
"enumDescriptions": [
"Enable documentation links everywhere",
"Enable documentation links only in import statements",
"Disable documentation links"
],
"default": "Enabled"
},
"elmLand.feature.autocomplete": {
"order": 5,
"description": "Enable the 'Autocomplete' feature",
"type": "boolean",
"default": true
},
"elmLand.feature.htmlToElm": {
"order": 6,
"description": "Enable the 'HTML to Elm' feature",
"type": "boolean",
"default": true
},
"elmLand.feature.goToSymbol": {
"order": 7,
"description": "Enable the 'Go-to-symbol' feature",
"type": "boolean",
"default": true
},
"elmLand.feature.openSymbolByName": {
"order": 8,
"description": "Enable the 'Open symbol by name' feature",
"type": "boolean",
"default": true
},
"elmLand.compilerFilepath": {
"order": 9,
"description": "The path to your Elm compiler",
"type": "string",
"default": "elm"
}
}
}
],
"languages": [
{
"id": "elm",
"aliases": [
"Elm",
"elm"
],
"extensions": [
".elm"
],
"configuration": "./src/language-configuration.json"
}
],
"grammars": [
{
"language": "elm",
"scopeName": "source.elm",
"path": "./src/syntax.json"
}
]
},
"capabilities": {
"referencesProvider": "true"
},
"dependencies": {
"elm": "0.19.1-6",
"elm-format": "0.8.7"
},
"devDependencies": {
"@types/node": "18.11.18",
"@types/vscode": "1.74.0",
"@vscode/vsce": "3.2.1",
"chokidar-cli": "3.0.0",
"terser": "5.16.3",
"typescript": "4.9.4"
}
}