-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (61 loc) · 1.11 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
{
"name": "dml",
"version": "1.1.0",
"publisher": "litehouse",
"engines": {
"vscode": "^1.64.2"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ross-sig/vscode-gembase-dml/issues"
},
"homepage": "https://github.com/ross-sig/vscode-gembase-dml",
"repository": {
"type": "git",
"url": "https://github.com/ross-sig/vscode-gembase-dml"
},
"displayName": "Gembase DML",
"description": "GEMBASE Data Manipulation Language support for Visual Studio Code",
"icon": "vs-code-gembase-dml-icon-128.png",
"categories": [
"Languages"
],
"keywords": [
"dml",
"iaf",
"gembase",
"ross",
"4gl",
"aptean"
],
"main": "./outline/extension.js",
"activationEvents": [
"onLanguage:dml"
],
"contributes": {
"snippets": [
{
"language": "dml",
"path": "./snippets/dml-snippets.json"
}
],
"languages": [
{
"id": "dml",
"extensions": [
".dml"
],
"aliases": [
"DML (Gembase)"
]
}
],
"grammars": [
{
"language": "dml",
"scopeName": "source.dml",
"path": "./syntaxes/dml.json"
}
]
}
}