-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.68 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
{
"name": "ergo-vscode",
"version": "0.1.0",
"description": "LSP Client, syntax settings, etc for the ergo language.",
"displayName": "Ergo",
"categories": ["Formatters", "Programming Languages"],
"publisher": "CACI",
"author": "Alex Franchuk",
"license": "MIT",
"icon": "images/icon.jpg",
"engines": {
"vscode": "^1.63.0"
},
"activationEvents": [
"onLanguage:ergo"
],
"contributes": {
"languages": [{
"id": "ergo",
"extensions": [".ergo"],
"configuration": "./language-configuration.json"
}],
"semanticTokenScopes": [{
"language": "ergo",
"scopes": {
"comment.documentation": ["comment.documentation", "comment.block.documentation"]
}
}],
"configuration": {
"title": "Ergo",
"properties": {
"ergo.binary": {
"type": "string",
"default": "ergolang",
"description": "The path or binary name for the ergolang executable."
}
}
}
},
"configurationDefaults": {
"ergo": {
"editor.semanticHighlighting.enabled": true
}
},
"main": "./out/extension.js",
"scripts": {
"compile": "tsc -b",
"vscode:prepublish": "npm run compile",
"package": "vsce package --allow-missing-repository"
},
"dependencies": {
"vscode-languageclient": "^7.0.0"
},
"devDependencies": {
"@types/vscode": "^1.63.0",
"@types/node": "^14.17.0",
"typescript": "^4.6.2",
"vsce": "^2.7.0"
}
}