-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
170 lines (170 loc) · 5.02 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"name": "language-fuior",
"displayName": "Fuior",
"description": "Syntax highlighting and language support for Fuior (narrative DSL)",
"homepage": "https://github.com/critique-gaming/vscode-language-fuior",
"version": "0.7.3",
"publisher": "critique-gaming",
"license": "MIT",
"icon": "images/icon.png",
"repository": {
"url": "https://github.com/critique-gaming/vscode-language-fuior"
},
"author": {
"name": "Critique Gaming",
"email": "[email protected]"
},
"categories": [
"Programming Languages",
"Themes",
"Other"
],
"keywords": [
"Syntax",
"Highlighter",
"Highlight",
"Highlighting",
"Coloring",
"Tree-Sitter",
"Parser",
"Lua",
"Fuior"
],
"activationEvents": [
"onLanguage:fuior",
"onCommand:fuior.runInGame"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"vscode:package": "node ./node_modules/.bin/vsce package",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./scripts/build.js"
},
"engines": {
"vscode": "^1.46.0"
},
"dependencies": {
"jsonc-parser": "^2.2.1",
"lodash.debounce": "^4.0.8",
"node-fetch": "^2.6.1",
"web-tree-sitter": "^0.19.4"
},
"devDependencies": {
"@types/lodash.debounce": "^4.0.6",
"@types/node": "^13.7.2",
"@types/node-fetch": "^2.5.8",
"@types/vscode": "^1.46.0",
"tree-sitter": "^0.19.0",
"tree-sitter-cli": "^0.19.5",
"tree-sitter-fuior": "^0.8.0",
"tslint": "^6.1.2",
"typescript": "^3.9.3",
"vsce": "^1.81.1"
},
"contributes": {
"commands": [
{
"command": "fuior.runInGame",
"title": "Fuior: Run in game"
}
],
"menus": {
"commandPalette": [
{
"command": "fuior.runInGame",
"when": "editorLangId == fuior"
}
]
},
"keybindings": [
{
"command": "fuior.runInGame",
"key": "ctrl+alt+cmd+r",
"when": "editorLangId == fuior"
}
],
"languages": [
{
"id": "fuior",
"extensions": [
".fui"
],
"aliases": [
"Fuior",
"fui"
],
"configuration": "./language-configuration.json"
}
],
"semanticTokenTypes": [
{
"id": "punctuation",
"description": "Punctuation symbols"
}
],
"semanticTokenScopes": [
{
"scopes": {
"punctuation": [
"punctuation"
],
"type.modification": [
"storage.modifier"
]
}
}
],
"configuration": {
"title": "Fuior",
"properties": {
"fuior.gameServerURL": {
"description": "URL to the hot reload server of the game",
"type": "string",
"default": "http://127.0.0.1:3648"
},
"fuior.variableOverrides": {
"description": "Variables to set before hot reloading",
"type": "object",
"default": {},
"additionalProperties": true
},
"fuior.highlightComment": {
"description": "Enable highlighting of comments",
"type": "boolean",
"default": true
},
"fuior.highlightTerms": {
"description": "Enabled terms",
"type": "array",
"default": [
"type",
"scope",
"function",
"variable",
"number",
"string",
"comment",
"constant",
"directive",
"control",
"operator",
"modifier",
"punctuation"
]
},
"fuior.debugHover": {
"description": "Show tool-tip with syntax scope on hover",
"type": "boolean",
"default": false
},
"fuior.debugDepth": {
"description": "Depth of syntax scope in debug tools",
"type": "integer",
"default": -1
}
}
}
}
}