-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
99 lines (99 loc) · 2.03 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
{
"name": "savi",
"displayName": "Savi Language",
"description": "Support for the Savi programming language.",
"version": "0.6.0",
"publisher": "savi",
"engines": {
"vscode": "^1.35.0"
},
"categories": [
"Programming Languages"
],
"repository": {
"type": "git",
"url": "https://github.com/savi-lang/savi"
},
"dependencies": {
"vscode-languageclient": "^4.3.0"
},
"devDependencies": {
"@types/node": "~10.1.0",
"@types/vscode": "^1.35.0",
"typescript": "^3.0.0",
"vsce": "^1.58.0",
"vscode": "^1.1.35"
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"activationEvents": [
"onLanguage:savi"
],
"contributes": {
"languages": [
{
"id": "savi",
"aliases": [
"Savi",
"savi"
],
"extensions": [
".savi"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "savi",
"scopeName": "source.savi",
"path": "./syntaxes/Savi.tmLanguage"
},
{
"scopeName": "markdown.savi.codeblock",
"path": "./syntaxes/codeblock.json",
"injectTo": [
"text.html.markdown"
],
"embeddedLanguages": {
"meta.embedded.block.savi": "savi"
}
}
],
"commands": [
{
"command": "savi.restart",
"title": "Restart the Savi Language Server",
"description": "Restart the Savi Language Server process",
"category": "Savi"
}
],
"problemMatchers": [],
"configuration": {
"type": "object",
"title": "Savi configuration",
"properties": {
"savi-client.trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Trace the communication between VS Code and the Savi Language Server, for debugging purposes.",
"scope": "window"
}
}
}
},
"__metadata": {
"id": "474b763e-eb09-46fb-8b43-2a66c4e347fb",
"publisherDisplayName": "savi",
"publisherId": "2b952662-3ded-4c9b-996f-9d1725e09e24"
}
}