ts-wasms 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (94) hide show
  1. package/LICENSE +21 -0
  2. package/README +2 -0
  3. package/out/bash/highlights.scm +56 -0
  4. package/out/bash/tree-sitter-bash.wasm +0 -0
  5. package/out/c/highlights.scm +81 -0
  6. package/out/c/tags.scm +9 -0
  7. package/out/c/tree-sitter-c.wasm +0 -0
  8. package/out/c-sharp/highlights.scm +213 -0
  9. package/out/c-sharp/tags.scm +23 -0
  10. package/out/c-sharp/tree-sitter-c_sharp.wasm +0 -0
  11. package/out/cpp/highlights.scm +70 -0
  12. package/out/cpp/injections.scm +3 -0
  13. package/out/cpp/tags.scm +15 -0
  14. package/out/cpp/tree-sitter-cpp.wasm +0 -0
  15. package/out/css/highlights.scm +76 -0
  16. package/out/css/tree-sitter-css.wasm +0 -0
  17. package/out/dart/folds.scm +8 -0
  18. package/out/dart/highlights.scm +224 -0
  19. package/out/dart/tree-sitter-dart.wasm +0 -0
  20. package/out/elisp/highlights.scm +72 -0
  21. package/out/elisp/tags.scm +5 -0
  22. package/out/elisp/tree-sitter-elisp.wasm +0 -0
  23. package/out/elixir/highlights.scm +223 -0
  24. package/out/elixir/injections.scm +55 -0
  25. package/out/elixir/tags.scm +54 -0
  26. package/out/elixir/tree-sitter-elixir.wasm +0 -0
  27. package/out/embedded-template/highlights.scm +12 -0
  28. package/out/embedded-template/injections-ejs.scm +7 -0
  29. package/out/embedded-template/injections-erb.scm +7 -0
  30. package/out/embedded-template/injections-etlua.scm +7 -0
  31. package/out/embedded-template/tree-sitter-embedded_template.wasm +0 -0
  32. package/out/go/highlights.scm +123 -0
  33. package/out/go/tags.scm +42 -0
  34. package/out/go/tree-sitter-go.wasm +0 -0
  35. package/out/haskell/highlights.scm +443 -0
  36. package/out/haskell/injections.scm +76 -0
  37. package/out/haskell/locals.scm +4 -0
  38. package/out/haskell/tree-sitter-haskell.wasm +0 -0
  39. package/out/html/highlights.scm +13 -0
  40. package/out/html/injections.scm +7 -0
  41. package/out/html/tree-sitter-html.wasm +0 -0
  42. package/out/java/highlights.scm +149 -0
  43. package/out/java/tags.scm +20 -0
  44. package/out/java/tree-sitter-java.wasm +0 -0
  45. package/out/javascript/highlights-jsx.scm +8 -0
  46. package/out/javascript/highlights-params.scm +12 -0
  47. package/out/javascript/highlights.scm +204 -0
  48. package/out/javascript/injections.scm +31 -0
  49. package/out/javascript/locals.scm +23 -0
  50. package/out/javascript/tags.scm +99 -0
  51. package/out/javascript/tree-sitter-javascript.wasm +0 -0
  52. package/out/json/highlights.scm +16 -0
  53. package/out/json/tree-sitter-json.wasm +0 -0
  54. package/out/kotlin/highlights.scm +380 -0
  55. package/out/kotlin/tree-sitter-kotlin.wasm +0 -0
  56. package/out/objc/folds.scm +20 -0
  57. package/out/objc/highlights.scm +216 -0
  58. package/out/objc/indents.scm +1 -0
  59. package/out/objc/injections.scm +10 -0
  60. package/out/objc/locals.scm +1 -0
  61. package/out/objc/tree-sitter-objc.wasm +0 -0
  62. package/out/php/tree-sitter-php.wasm +0 -0
  63. package/out/php_only/tree-sitter-php_only.wasm +0 -0
  64. package/out/python/highlights.scm +137 -0
  65. package/out/python/tags.scm +14 -0
  66. package/out/python/tree-sitter-python.wasm +0 -0
  67. package/out/regex/highlights.scm +63 -0
  68. package/out/regex/tree-sitter-regex.wasm +0 -0
  69. package/out/ruby/highlights.scm +154 -0
  70. package/out/ruby/locals.scm +27 -0
  71. package/out/ruby/tags.scm +64 -0
  72. package/out/ruby/tree-sitter-ruby.wasm +0 -0
  73. package/out/rust/highlights.scm +161 -0
  74. package/out/rust/injections.scm +9 -0
  75. package/out/rust/tags.scm +60 -0
  76. package/out/rust/tree-sitter-rust.wasm +0 -0
  77. package/out/scala/highlights.scm +260 -0
  78. package/out/scala/indents.scm +30 -0
  79. package/out/scala/locals.scm +30 -0
  80. package/out/scala/tags.scm +66 -0
  81. package/out/scala/tree-sitter-scala.wasm +0 -0
  82. package/out/swift/folds.scm +35 -0
  83. package/out/swift/highlights.scm +336 -0
  84. package/out/swift/indents.scm +123 -0
  85. package/out/swift/injections.scm +10 -0
  86. package/out/swift/locals.scm +23 -0
  87. package/out/swift/outline.scm +66 -0
  88. package/out/swift/tags.scm +51 -0
  89. package/out/swift/textobjects.scm +19 -0
  90. package/out/swift/tree-sitter-swift.wasm +0 -0
  91. package/out/tsx/tree-sitter-tsx.wasm +0 -0
  92. package/out/typescript/tree-sitter-typescript.wasm +0 -0
  93. package/out/vue/tree-sitter-vue.wasm +0 -0
  94. package/package.json +64 -0
@@ -0,0 +1,336 @@
1
+ [
2
+ "."
3
+ ";"
4
+ ":"
5
+ ","
6
+ ] @punctuation.delimiter
7
+
8
+ [
9
+ "("
10
+ ")"
11
+ "["
12
+ "]"
13
+ "{"
14
+ "}"
15
+ ] @punctuation.bracket
16
+
17
+ ; Identifiers
18
+ (type_identifier) @type
19
+
20
+ [
21
+ (self_expression)
22
+ (super_expression)
23
+ ] @variable.builtin
24
+
25
+ ; Declarations
26
+ [
27
+ "func"
28
+ "deinit"
29
+ ] @keyword.function
30
+
31
+ [
32
+ (visibility_modifier)
33
+ (member_modifier)
34
+ (function_modifier)
35
+ (property_modifier)
36
+ (parameter_modifier)
37
+ (inheritance_modifier)
38
+ (mutation_modifier)
39
+ ] @keyword.modifier
40
+
41
+ (simple_identifier) @variable
42
+
43
+ (function_declaration
44
+ (simple_identifier) @function.method)
45
+
46
+ (protocol_function_declaration
47
+ name: (simple_identifier) @function.method)
48
+
49
+ (init_declaration
50
+ "init" @constructor)
51
+
52
+ (parameter
53
+ external_name: (simple_identifier) @variable.parameter)
54
+
55
+ (parameter
56
+ name: (simple_identifier) @variable.parameter)
57
+
58
+ (type_parameter
59
+ (type_identifier) @variable.parameter)
60
+
61
+ (inheritance_constraint
62
+ (identifier
63
+ (simple_identifier) @variable.parameter))
64
+
65
+ (equality_constraint
66
+ (identifier
67
+ (simple_identifier) @variable.parameter))
68
+
69
+ [
70
+ "protocol"
71
+ "extension"
72
+ "indirect"
73
+ "nonisolated"
74
+ "override"
75
+ "convenience"
76
+ "required"
77
+ "some"
78
+ "any"
79
+ "weak"
80
+ "unowned"
81
+ "didSet"
82
+ "willSet"
83
+ "subscript"
84
+ "let"
85
+ "var"
86
+ (throws)
87
+ (where_keyword)
88
+ (getter_specifier)
89
+ (setter_specifier)
90
+ (modify_specifier)
91
+ (else)
92
+ (as_operator)
93
+ ] @keyword
94
+
95
+ [
96
+ "enum"
97
+ "struct"
98
+ "class"
99
+ "typealias"
100
+ ] @keyword.type
101
+
102
+ [
103
+ "async"
104
+ "await"
105
+ ] @keyword.coroutine
106
+
107
+ (shebang_line) @keyword.directive
108
+
109
+ (class_body
110
+ (property_declaration
111
+ (pattern
112
+ (simple_identifier) @variable.member)))
113
+
114
+ (protocol_property_declaration
115
+ (pattern
116
+ (simple_identifier) @variable.member))
117
+
118
+ (navigation_expression
119
+ (navigation_suffix
120
+ (simple_identifier) @variable.member))
121
+
122
+ (value_argument
123
+ name: (value_argument_label
124
+ (simple_identifier) @variable.member))
125
+
126
+ (import_declaration
127
+ "import" @keyword.import)
128
+
129
+ (enum_entry
130
+ "case" @keyword)
131
+
132
+ (modifiers
133
+ (attribute
134
+ "@" @attribute
135
+ (user_type
136
+ (type_identifier) @attribute)))
137
+
138
+ ; Function calls
139
+ (call_expression
140
+ (simple_identifier) @function.call) ; foo()
141
+
142
+ (call_expression
143
+ ; foo.bar.baz(): highlight the baz()
144
+ (navigation_expression
145
+ (navigation_suffix
146
+ (simple_identifier) @function.call)))
147
+
148
+ (call_expression
149
+ (prefix_expression
150
+ (simple_identifier) @function.call)) ; .foo()
151
+
152
+ ((navigation_expression
153
+ (simple_identifier) @type) ; SomeType.method(): highlight SomeType as a type
154
+ (#match? @type "^[A-Z]"))
155
+
156
+ (directive) @keyword.directive
157
+
158
+ ; See https://docs.swift.org/swift-book/documentation/the-swift-programming-language/lexicalstructure/#Keywords-and-Punctuation
159
+ [
160
+ (diagnostic)
161
+ (availability_condition)
162
+ (playground_literal)
163
+ (key_path_string_expression)
164
+ (selector_expression)
165
+ (external_macro_definition)
166
+ ] @function.macro
167
+
168
+ (special_literal) @constant.macro
169
+
170
+ ; Statements
171
+ (for_statement
172
+ "for" @keyword.repeat)
173
+
174
+ (for_statement
175
+ "in" @keyword.repeat)
176
+
177
+ [
178
+ "while"
179
+ "repeat"
180
+ "continue"
181
+ "break"
182
+ ] @keyword.repeat
183
+
184
+ (guard_statement
185
+ "guard" @keyword.conditional)
186
+
187
+ (if_statement
188
+ "if" @keyword.conditional)
189
+
190
+ (switch_statement
191
+ "switch" @keyword.conditional)
192
+
193
+ (switch_entry
194
+ "case" @keyword)
195
+
196
+ (switch_entry
197
+ "fallthrough" @keyword)
198
+
199
+ (switch_entry
200
+ (default_keyword) @keyword)
201
+
202
+ "return" @keyword.return
203
+
204
+ (ternary_expression
205
+ [
206
+ "?"
207
+ ":"
208
+ ] @keyword.conditional.ternary)
209
+
210
+ [
211
+ (try_operator)
212
+ "do"
213
+ (throw_keyword)
214
+ (catch_keyword)
215
+ ] @keyword.exception
216
+
217
+ (statement_label) @label
218
+
219
+ ; Comments
220
+ [
221
+ (comment)
222
+ (multiline_comment)
223
+ ] @comment @spell
224
+
225
+ ((comment) @comment.documentation
226
+ (#match? @comment.documentation "^///[^/]"))
227
+
228
+ ((comment) @comment.documentation
229
+ (#match? @comment.documentation "^///$"))
230
+
231
+ ((multiline_comment) @comment.documentation
232
+ (#match? @comment.documentation "^/[*][*][^*].*[*]/$"))
233
+
234
+ ; String literals
235
+ (line_str_text) @string
236
+
237
+ (str_escaped_char) @string.escape
238
+
239
+ (multi_line_str_text) @string
240
+
241
+ (raw_str_part) @string
242
+
243
+ (raw_str_end_part) @string
244
+
245
+ (line_string_literal
246
+ [
247
+ "\\("
248
+ ")"
249
+ ] @punctuation.special)
250
+
251
+ (multi_line_string_literal
252
+ [
253
+ "\\("
254
+ ")"
255
+ ] @punctuation.special)
256
+
257
+ (raw_str_interpolation
258
+ [
259
+ (raw_str_interpolation_start)
260
+ ")"
261
+ ] @punctuation.special)
262
+
263
+ [
264
+ "\""
265
+ "\"\"\""
266
+ ] @string
267
+
268
+ ; Lambda literals
269
+ (lambda_literal
270
+ "in" @keyword.operator)
271
+
272
+ ; Basic literals
273
+ [
274
+ (integer_literal)
275
+ (hex_literal)
276
+ (oct_literal)
277
+ (bin_literal)
278
+ ] @number
279
+
280
+ (real_literal) @number.float
281
+
282
+ (boolean_literal) @boolean
283
+
284
+ "nil" @constant.builtin
285
+
286
+ (wildcard_pattern) @character.special
287
+
288
+ ; Regex literals
289
+ (regex_literal) @string.regexp
290
+
291
+ ; Operators
292
+ (custom_operator) @operator
293
+
294
+ [
295
+ "+"
296
+ "-"
297
+ "*"
298
+ "/"
299
+ "%"
300
+ "="
301
+ "+="
302
+ "-="
303
+ "*="
304
+ "/="
305
+ "<"
306
+ ">"
307
+ "<<"
308
+ ">>"
309
+ "<="
310
+ ">="
311
+ "++"
312
+ "--"
313
+ "^"
314
+ "&"
315
+ "&&"
316
+ "|"
317
+ "||"
318
+ "~"
319
+ "%="
320
+ "!="
321
+ "!=="
322
+ "=="
323
+ "==="
324
+ "?"
325
+ "??"
326
+ "->"
327
+ "..<"
328
+ "..."
329
+ (bang)
330
+ ] @operator
331
+
332
+ (type_arguments
333
+ [
334
+ "<"
335
+ ">"
336
+ ] @punctuation.bracket)
@@ -0,0 +1,123 @@
1
+ ; format-ignore
2
+ [
3
+ ; ... refers to the section that will get affected by this indent.begin capture
4
+ (protocol_body) ; protocol Foo { ... }
5
+ (class_body) ; class Foo { ... }
6
+ (enum_class_body) ; enum Foo { ... }
7
+ (function_declaration) ; func Foo (...) {...}
8
+ (init_declaration) ; init(...) {...}
9
+ (deinit_declaration) ; deinit {...}
10
+ (computed_property) ; { ... }
11
+ (subscript_declaration) ; subscript Foo(...) { ... }
12
+
13
+ (computed_getter) ; get { ... }
14
+ (computed_setter) ; set { ... }
15
+
16
+ (assignment) ; a = b
17
+
18
+ (control_transfer_statement) ; return ...
19
+ (for_statement)
20
+ (while_statement)
21
+ (repeat_while_statement)
22
+ (do_statement)
23
+ (if_statement)
24
+ (switch_statement)
25
+ (guard_statement)
26
+
27
+ (type_parameters) ; x<Foo>
28
+ (tuple_type) ; (...)
29
+ (array_type) ; [String]
30
+ (dictionary_type) ; [Foo: Bar]
31
+
32
+ (call_expression) ; callFunc(...)
33
+ (tuple_expression) ; ( foo + bar )
34
+ (array_literal) ; [ foo, bar ]
35
+ (dictionary_literal) ; [ foo: bar, x: y ]
36
+ (lambda_literal)
37
+ (willset_didset_block)
38
+ (willset_clause)
39
+ (didset_clause)
40
+ ] @indent.begin
41
+
42
+ (init_declaration) @indent.begin
43
+
44
+ (init_declaration
45
+ [
46
+ "init"
47
+ "("
48
+ ] @indent.branch)
49
+
50
+ ; indentation for init parameters
51
+ (init_declaration
52
+ ")" @indent.branch @indent.end)
53
+
54
+ (init_declaration
55
+ (parameter) @indent.begin
56
+ (#set! indent.immediate))
57
+
58
+ ; @something(...)
59
+ (modifiers
60
+ (attribute) @indent.begin)
61
+
62
+ (function_declaration
63
+ (modifiers
64
+ .
65
+ (attribute)
66
+ (_)* @indent.branch)
67
+ .
68
+ _ @indent.branch
69
+ (#not-kind-eq? @indent.branch "type_parameters" "parameter"))
70
+
71
+ (ERROR
72
+ [
73
+ "<"
74
+ "{"
75
+ "("
76
+ "["
77
+ ]) @indent.begin
78
+
79
+ ; if-elseif
80
+ (if_statement
81
+ (if_statement) @indent.dedent)
82
+
83
+ ; case Foo:
84
+ ; default Foo:
85
+ ; @attribute default Foo:
86
+ (switch_entry
87
+ .
88
+ _ @indent.branch)
89
+
90
+ (function_declaration
91
+ ")" @indent.branch)
92
+
93
+ (type_parameters
94
+ ">" @indent.branch @indent.end .)
95
+
96
+ (tuple_expression
97
+ ")" @indent.branch @indent.end)
98
+
99
+ (value_arguments
100
+ ")" @indent.branch @indent.end)
101
+
102
+ (tuple_type
103
+ ")" @indent.branch @indent.end)
104
+
105
+ (modifiers
106
+ (attribute
107
+ ")" @indent.branch @indent.end))
108
+
109
+ [
110
+ "}"
111
+ "]"
112
+ ] @indent.branch @indent.end
113
+
114
+ [
115
+ ; (ERROR)
116
+ (comment)
117
+ (multiline_comment)
118
+ (raw_str_part)
119
+ (multi_line_string_literal)
120
+ ] @indent.auto
121
+
122
+ (directive) @indent.ignore
123
+
@@ -0,0 +1,10 @@
1
+ ; Parse regex syntax within regex literals
2
+
3
+ ((regex_literal) @injection.content
4
+ (#set! injection.language "regex"))
5
+
6
+ ([
7
+ (comment)
8
+ (multiline_comment)
9
+ ] @injection.content
10
+ (#set! injection.language "comment"))
@@ -0,0 +1,23 @@
1
+ (import_declaration
2
+ (identifier) @local.definition.import)
3
+
4
+ (function_declaration
5
+ name: (simple_identifier) @local.definition.function)
6
+
7
+ ; Scopes
8
+ [
9
+ (statements)
10
+ (for_statement)
11
+ (while_statement)
12
+ (repeat_while_statement)
13
+ (do_statement)
14
+ (if_statement)
15
+ (guard_statement)
16
+ (switch_statement)
17
+ (property_declaration)
18
+ (function_declaration)
19
+ (class_declaration)
20
+ (protocol_declaration)
21
+ ] @local.scope
22
+
23
+
@@ -0,0 +1,66 @@
1
+ (protocol_declaration
2
+ declaration_kind: "protocol" @name
3
+ .
4
+ _ * @name
5
+ .
6
+ body: (protocol_body)
7
+ ) @item
8
+
9
+ (class_declaration
10
+ declaration_kind: (
11
+ [
12
+ "actor"
13
+ "class"
14
+ "extension"
15
+ "enum"
16
+ "struct"
17
+ ]
18
+ ) @name
19
+ .
20
+ _ * @name
21
+ .
22
+ body: (_)
23
+ ) @item
24
+
25
+ (init_declaration
26
+ name: "init" @name
27
+ .
28
+ _ * @name
29
+ .
30
+ body: (function_body)
31
+ ) @item
32
+
33
+ (deinit_declaration
34
+ "deinit" @name) @item
35
+
36
+ (function_declaration
37
+ "func" @name
38
+ .
39
+ _ * @name
40
+ .
41
+ body: (function_body)
42
+ ) @item
43
+
44
+ (class_body
45
+ (property_declaration
46
+ (value_binding_pattern) @name
47
+ name: (pattern) @name
48
+ (type_annotation)? @name
49
+ ) @item
50
+ )
51
+
52
+ (enum_class_body
53
+ (property_declaration
54
+ (value_binding_pattern) @name
55
+ name: (pattern) @name
56
+ (type_annotation)? @name
57
+ ) @item
58
+ )
59
+
60
+ (
61
+ (protocol_function_declaration) @name
62
+ ) @item
63
+
64
+ (
65
+ (protocol_property_declaration) @name
66
+ ) @item
@@ -0,0 +1,51 @@
1
+ (class_declaration
2
+ name: (type_identifier) @name) @definition.class
3
+
4
+ (protocol_declaration
5
+ name: (type_identifier) @name) @definition.interface
6
+
7
+ (class_declaration
8
+ (class_body
9
+ [
10
+ (function_declaration
11
+ name: (simple_identifier) @name
12
+ )
13
+ (subscript_declaration
14
+ (parameter (simple_identifier) @name)
15
+ )
16
+ (init_declaration "init" @name)
17
+ (deinit_declaration "deinit" @name)
18
+ ]
19
+ )
20
+ ) @definition.method
21
+
22
+ (protocol_declaration
23
+ (protocol_body
24
+ [
25
+ (protocol_function_declaration
26
+ name: (simple_identifier) @name
27
+ )
28
+ (subscript_declaration
29
+ (parameter (simple_identifier) @name)
30
+ )
31
+ (init_declaration "init" @name)
32
+ ]
33
+ )
34
+ ) @definition.method
35
+
36
+ (class_declaration
37
+ (class_body
38
+ [
39
+ (property_declaration
40
+ (pattern (simple_identifier) @name)
41
+ )
42
+ ]
43
+ )
44
+ ) @definition.property
45
+
46
+ (property_declaration
47
+ (pattern (simple_identifier) @name)
48
+ ) @definition.property
49
+
50
+ (function_declaration
51
+ name: (simple_identifier) @name) @definition.function
@@ -0,0 +1,19 @@
1
+
2
+
3
+ ; MARK: Structure
4
+
5
+ (function_declaration
6
+ body: (_) @function.inside) @function.around
7
+
8
+ ; TODO: Classes/structs/enums
9
+
10
+
11
+ ; MARK: Tests
12
+
13
+ ; Only matches prefix test. Other conventions
14
+ ; might be nice to add!
15
+ (function_declaration
16
+ name: (simple_identifier) @_name
17
+ (#match? @_name "^test")
18
+ )
19
+
Binary file
Binary file
Binary file
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "ts-wasms",
3
+ "version": "1.0.2",
4
+ "description": "Pre-built WebAssembly binaries for tree-sitter grammars",
5
+ "scripts": {
6
+ "build": "node build.js"
7
+ },
8
+ "keywords": [
9
+ "tree-sitter",
10
+ "wasm"
11
+ ],
12
+ "author": "Crysthamus",
13
+ "license": "MIT",
14
+ "devEngines": {
15
+ "packageManager": {
16
+ "name": "pnpm",
17
+ "version": "^11.1.2",
18
+ "onFail": "download"
19
+ }
20
+ },
21
+ "type": "module",
22
+ "files": [
23
+ "out"
24
+ ],
25
+ "devDependencies": {
26
+ "@eagleoutice/tree-sitter-r": "^1.1.2",
27
+ "@elm-tooling/tree-sitter-elm": "^5.9.0",
28
+ "@tree-sitter-grammars/tree-sitter-lua": "^0.4.1",
29
+ "@tree-sitter-grammars/tree-sitter-markdown": "^0.3.2",
30
+ "@tree-sitter-grammars/tree-sitter-toml": "^0.7.0",
31
+ "@tree-sitter-grammars/tree-sitter-xml": "^0.7.0",
32
+ "@tree-sitter-grammars/tree-sitter-zig": "^1.1.2",
33
+ "p-map": "^7.0.4",
34
+ "tree-sitter-bash": "^0.25.1",
35
+ "tree-sitter-c": "^0.24.1",
36
+ "tree-sitter-c-sharp": "^0.23.5",
37
+ "tree-sitter-cli": "^0.26.8",
38
+ "tree-sitter-cpp": "^0.23.4",
39
+ "tree-sitter-css": "^0.25.0",
40
+ "tree-sitter-dart": "^1.0.0",
41
+ "tree-sitter-elisp": "^1.6.1",
42
+ "tree-sitter-elixir": "^0.3.5",
43
+ "tree-sitter-embedded-template": "^0.25.0",
44
+ "tree-sitter-go": "^0.25.0",
45
+ "tree-sitter-haskell": "^0.23.1",
46
+ "tree-sitter-html": "^0.23.2",
47
+ "tree-sitter-java": "^0.23.5",
48
+ "tree-sitter-javascript": "^0.25.0",
49
+ "tree-sitter-json": "^0.24.8",
50
+ "tree-sitter-kotlin": "^0.3.8",
51
+ "tree-sitter-objc": "^3.0.2",
52
+ "tree-sitter-ocaml": "^0.24.2",
53
+ "tree-sitter-perl": "git+https://github.com/tree-sitter-perl/tree-sitter-perl.git#release",
54
+ "tree-sitter-php": "^0.24.2",
55
+ "tree-sitter-python": "^0.25.0",
56
+ "tree-sitter-regex": "^0.25.0",
57
+ "tree-sitter-ruby": "^0.23.1",
58
+ "tree-sitter-rust": "^0.24.0",
59
+ "tree-sitter-scala": "^0.24.0",
60
+ "tree-sitter-swift": "^0.7.1",
61
+ "tree-sitter-typescript": "^0.23.2",
62
+ "tree-sitter-vue": "^0.2.1"
63
+ }
64
+ }