-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "XText-Language-Server-in-VSCode",
"displayName": "Xtext DSL Language Server in VS Code",
"description": "A simple DSL language server example for VSCode",
"version": "0.0.1",
"publisher": "naomod",
"license": "EPL-1.0",
"engines": {
"vscode": "^1.49.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:family"
],
"main": "./client/out/extension",
"contributes": {
"languages": [
{
"id": "family",
"aliases": [
"family"
],
"extensions": [
".fml"
],
"configuration": "./client/family.configuration.json"
}
],
"grammars": [
{
"language": "family",
"scopeName": "text.family",
"path": "./client/syntaxes/family.tmLanguage.json"
}
],
"commands": []
},
"scripts": {
"prepublish": "tsc -p ./client",
"compile": "tsc -p ./client",
"watch": "tsc -w -p ./client",
"update-vscode": "node ./node_modules/vscode/bin/install"
},
"dependencies": {
"XText-Language-Server-in-VSCode-client": "file:client"
}
}