generated from oovm/RustTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 2.29 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
{
"name": "vscode-rhai",
"private": true,
"displayName": "Rhai Language Support",
"description": "Syntax highlighting for Rhai scripts",
"publisher": "rhaiscript",
"version": "0.6.8",
"icon": "assets/icon.png",
"homepage": "https://rhai.rs",
"bugs": {
"url": "https://github.com/rhaiscript/vscode-rhai/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/rhaiscript/vscode-rhai.git"
},
"categories": [
"Programming Languages",
"Formatters"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"scripts": {
"build:syntax": "ts-node syntax/build.ts",
"build:ts": "tsc -b",
"build": "wee build:syntax -t && wee build:ts -t",
"pack": "wee build && vsce package",
"lint": "tslint **/*.ts --fix"
},
"main": "./dist/extension.js",
"engines": {
"vscode": "^1.30.0"
},
"activationEvents": [
"onLanguage:rhai"
],
"contributes": {
"languages": [
{
"id": "rhai",
"aliases": [
"Rhai"
],
"extensions": [
".rhai"
],
"filenames": [],
"filenamePatterns": [],
"mimetypes": [],
"icon": {
"light": "./icons/rhai.png",
"dark": "./icons/rhai.png"
},
"configuration": "./syntax/rhai.configuration.json"
}
],
"grammars": [
{
"language": "rhai",
"scopeName": "source.rhai",
"path": "./syntax/rhai.tmLanguage.json"
},
{
"scopeName": "markdown.rhai.codeblock",
"path": "./syntax/rhai.markdown.json",
"injectTo": [
"text.html.markdown"
],
"embeddedLanguages": {
"meta.embedded.block.rhai": "rhai"
}
}
],
"commands": [
{
"command": "rhai.format",
"title": "Rhai: Format File"
}
],
"configuration": {
"title": "Rhai",
"properties": {
"rhai.useLanguageServer": {
"type": "boolean",
"default": true,
"description": "Use Rhai Language Server"
},
"rhai.trace.server": {
"type": "string",
"default": "off",
"enum": [
"off",
"messages",
"verbose"
],
"description": "Traces the communication between VS Code and the language server.",
"scope": "window"
}
}
}
},
"dependencies": {
"vscode-languageclient": "^6.1.3"
},
"devDependencies": {
"@types/node": "^11.13.6",
"@types/vscode": "^1.30.0",
"tslint": "^6.0.0",
"typescript": "^3.8.2"
}
}