-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 2.48 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
{
"name": "rdtkls",
"displayName": "RDTK",
"description": "RDTK language support - VSCode language client for RDTK recipes",
"author": "Leroy Ruegemer",
"contributors": [
{
"name": "Leroy Ruegemer",
"email": "[email protected]"
}
],
"license": "GPL-3.0-or-later",
"version": "0.0.3",
"engines": {
"vscode": "^1.33.0"
},
"publisher": "rdtk",
"preview": true,
"bugs": "https://github.com/RDTK/vscode-language-client/issues",
"repository": {
"type": "git",
"url": "https://github.com/RDTK/vscode-language-client"
},
"categories": [
"Programming Languages",
"Linters"
],
"keywords": [
"rdtk",
"yaml",
"autocompletion",
"validation"
],
"icon": "images/icon.png",
"activationEvents": [
"onLanguage:project-recipe",
"onLanguage:distribution-recipe",
"onLanguage:template-recipe"
],
"main": "./out/extension",
"contributes": {
"languages": [
{
"id": "project-recipe",
"aliases": [
"RDTK Project Recipe"
],
"extensions": [
".project"
],
"configuration": "./language-configuration.json"
},
{
"id": "distribution-recipe",
"aliases": [
"RDTK Distribution Recipe"
],
"extensions": [
".distribution"
],
"configuration": "./language-configuration.json"
},
{
"id": "template-recipe",
"aliases": [
"RDTK Template Recipe"
],
"extensions": [
".template"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "project-recipe",
"scopeName": "source.yaml",
"path": "./syntaxes/yaml.tmLanguage.json"
},
{
"language": "distribution-recipe",
"scopeName": "source.yaml",
"path": "./syntaxes/yaml.tmLanguage.json"
},
{
"language": "template-recipe",
"scopeName": "source.yaml",
"path": "./syntaxes/yaml.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "RDTK configuration",
"properties": {
"rdtkls.generator-path": {
"type": "string",
"default": "/usr/bin/build-generator",
"description": "Path to RDTK build-generator"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"dependencies": {
"vscode-languageclient": "^5.2.1"
},
"devDependencies": {
"vscode": "^1.1.35",
"@types/mocha": "^5.2.0",
"@types/node": "^8.0.0",
"typescript": "^3.0.0",
"vsce": "^1.0.0"
}
}