@saasontools/strauss-kb 0.1.16 → 0.1.18
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.
- package/ARCHITECTURE.md +48 -5
- package/README.md +44 -6
- package/dist/{chunk-H5W53NVU.js → chunk-GSOTMWZZ.js} +1765 -342
- package/dist/chunk-GSOTMWZZ.js.map +1 -0
- package/dist/{chunk-RINBOAQZ.js → chunk-IOIUS26S.js} +2 -2
- package/dist/{chunk-MEZCF646.js → chunk-ROGVYSMV.js} +2 -2
- package/dist/cli-main.cjs +1772 -363
- package/dist/cli-main.cjs.map +1 -1
- package/dist/cli-main.js +2 -2
- package/dist/index.cjs +1825 -381
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +504 -9
- package/dist/index.d.ts +504 -9
- package/dist/index.js +29 -3
- package/dist/index.js.map +1 -1
- package/dist/mcp-main.cjs +1761 -352
- package/dist/mcp-main.cjs.map +1 -1
- package/dist/mcp-main.js +2 -2
- package/grammars/README.md +78 -0
- package/grammars/manifest.json +595 -0
- package/grammars/packs.json +127 -0
- package/package.json +7 -2
- package/dist/chunk-H5W53NVU.js.map +0 -1
- /package/dist/{chunk-RINBOAQZ.js.map → chunk-IOIUS26S.js.map} +0 -0
- /package/dist/{chunk-MEZCF646.js.map → chunk-ROGVYSMV.js.map} +0 -0
package/dist/mcp-main.js
CHANGED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
# Grammars
|
|
2
|
+
|
|
3
|
+
A language pack is a WASM grammar and the definitions query that runs over it,
|
|
4
|
+
pinned together per language. Two files:
|
|
5
|
+
|
|
6
|
+
- `packs.json` — where each pack's two parts come from. The only file a human
|
|
7
|
+
edits.
|
|
8
|
+
- `manifest.json` — the lock: resolved URL and sha256 per part, plus the
|
|
9
|
+
license and file extensions. Generated; never hand-edited. The runtime reads
|
|
10
|
+
this and nothing else.
|
|
11
|
+
|
|
12
|
+
Neither part ships. Both download on first use, are checked against the hash
|
|
13
|
+
the lock pins on every load, and are cached side by side under
|
|
14
|
+
`~/.strauss/grammars/<language>/<sha12>.wasm|.scm`. A pack with no tags part
|
|
15
|
+
parses but resolves nothing.
|
|
16
|
+
|
|
17
|
+
## Commands
|
|
18
|
+
|
|
19
|
+
| Command | Does |
|
|
20
|
+
| ------------------------------- | --------------------------------------------------------------------------------- |
|
|
21
|
+
| `pnpm grammars pin <lang>…` | Resolves, downloads, proves and locks. `--all` for every pack. |
|
|
22
|
+
| `pnpm grammars add <lang>` | Writes the packs.json entry, then pins it. `--package --wasm --tags --ext`. |
|
|
23
|
+
| `pnpm grammars upgrade <lang>…` | Re-asks the registry what is newest, then pins. `--all`. |
|
|
24
|
+
| `pnpm grammars check` | Re-downloads and re-proves everything the lock names. `--outdated` also compares. |
|
|
25
|
+
|
|
26
|
+
Pinning downloads every part into memory and proves it: the WASM must load
|
|
27
|
+
under the installed `web-tree-sitter`, and the query must compile against it. A
|
|
28
|
+
missing or failing part fails the run and names the language, the part and the
|
|
29
|
+
URL it tried. Nothing but the lock is written — and the tags parts of the six
|
|
30
|
+
languages the suite parses, under `test/fixtures/grammars/tags/`, so its server
|
|
31
|
+
can serve them offline.
|
|
32
|
+
|
|
33
|
+
Every pack is proved in one process, in manifest order, with the others
|
|
34
|
+
resident — that is how the runtime meets them, and two faults show up no other
|
|
35
|
+
way. A grammar must be built at an ABI the pinned `web-tree-sitter` accepts
|
|
36
|
+
(0.27 takes 13 through 15, its `MIN_COMPATIBLE_VERSION` through
|
|
37
|
+
`LANGUAGE_VERSION`); one outside the range is rejected at `Language.load`, and
|
|
38
|
+
the pin stops naming the pack rather than locking a language the resolver would
|
|
39
|
+
report unavailable at read time. And a grammar built by a toolchain that
|
|
40
|
+
corrupts the shared WASM heap takes down the loads after it, whatever they are.
|
|
41
|
+
So a pack's WASM comes from its own release: an aggregate of other projects'
|
|
42
|
+
grammars is not a source.
|
|
43
|
+
|
|
44
|
+
## packs.json
|
|
45
|
+
|
|
46
|
+
```json
|
|
47
|
+
"python": { "package": "tree-sitter-python" },
|
|
48
|
+
"tsx": {
|
|
49
|
+
"package": "tree-sitter-typescript",
|
|
50
|
+
"wasm": "tree-sitter-tsx.wasm",
|
|
51
|
+
"tags": ["npm:tree-sitter-javascript/queries/tags.scm", "queries/tags.scm"]
|
|
52
|
+
}
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
`package` names the npm package whose version is pinned, or `gh:<owner>/<repo>`
|
|
56
|
+
for a grammar that is released rather than published — its version is a release
|
|
57
|
+
tag, its bare `wasm` path a release asset and its bare `tags` path a file in the
|
|
58
|
+
repository at that tag. `version` fixes the version exactly, and without one a
|
|
59
|
+
pin holds the locked version while `upgrade` moves to the newest release.
|
|
60
|
+
|
|
61
|
+
`wasm` defaults to `<package>.wasm` and `tags` to `queries/tags.scm`; a list of
|
|
62
|
+
`tags` concatenates in order, and `null` says
|
|
63
|
+
upstream ships none. `extensions` replaces the pack's Linguist list, `claims`
|
|
64
|
+
keeps it but wins the named extensions when two packs inherit the same one, and
|
|
65
|
+
`linguist` at the top of the file pins the Linguist tag both come from.
|
|
66
|
+
|
|
67
|
+
A locator is one of:
|
|
68
|
+
|
|
69
|
+
| Form | Resolves to |
|
|
70
|
+
| ----------------------------------------- | -------------------------------------------------- |
|
|
71
|
+
| `queries/tags.scm` | that path in the pack's own package at its pin |
|
|
72
|
+
| `npm:<pkg>[@<ver>]/<path>` | jsDelivr's npm mirror; no `@ver` means newest |
|
|
73
|
+
| `gh:<owner>/<repo>@<ref>/<path>` | jsDelivr's GitHub mirror; `<ref>` becomes a commit |
|
|
74
|
+
| `gh-release:<owner>/<repo>@<tag>/<asset>` | that release asset, served by GitHub |
|
|
75
|
+
| `https://…` | itself |
|
|
76
|
+
|
|
77
|
+
The ABI range is tied to the `web-tree-sitter` minor in `package.json` —
|
|
78
|
+
stamped as `webTreeSitter` — so bump it, re-pin every pack, and run the suite.
|
|
@@ -0,0 +1,595 @@
|
|
|
1
|
+
{
|
|
2
|
+
"webTreeSitter": "0.27.0",
|
|
3
|
+
"linguist": {
|
|
4
|
+
"tag": "v9.7.0",
|
|
5
|
+
"commit": "e0c78d62c42abae6122235d8e68a7aa43eef89da"
|
|
6
|
+
},
|
|
7
|
+
"packs": {
|
|
8
|
+
"bash": {
|
|
9
|
+
"package": "tree-sitter-bash@0.25.1",
|
|
10
|
+
"wasm": {
|
|
11
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-bash@0.25.1/tree-sitter-bash.wasm",
|
|
12
|
+
"sha256": "8292919c88a0f7d3fb31d0cd0253ca5a9531bc1ede82b0537f2c63dd8abe6a7a",
|
|
13
|
+
"bytes": 1358224
|
|
14
|
+
},
|
|
15
|
+
"tags": [],
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"extensions": [
|
|
18
|
+
".bash",
|
|
19
|
+
".bats",
|
|
20
|
+
".command",
|
|
21
|
+
".ksh",
|
|
22
|
+
".pacscript",
|
|
23
|
+
".sbatch",
|
|
24
|
+
".sh",
|
|
25
|
+
".sh.in",
|
|
26
|
+
".slurm",
|
|
27
|
+
".tmux",
|
|
28
|
+
".tool",
|
|
29
|
+
".trigger",
|
|
30
|
+
".zsh",
|
|
31
|
+
".zsh-theme"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
"c": {
|
|
35
|
+
"package": "tree-sitter-c@0.24.1",
|
|
36
|
+
"wasm": {
|
|
37
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-c@0.24.1/tree-sitter-c.wasm",
|
|
38
|
+
"sha256": "c852c2a85ebf2beb636aa3b0ef7f7e70458684d74f6741b20dcb296885bed9f9",
|
|
39
|
+
"bytes": 625918
|
|
40
|
+
},
|
|
41
|
+
"tags": [
|
|
42
|
+
{
|
|
43
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-c@0.24.1/queries/tags.scm",
|
|
44
|
+
"sha256": "774ca67cfe23b0e0d1d3a4f01788049a822beb1311feee72b20a595a37be1e28"
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"license": "MIT",
|
|
48
|
+
"extensions": [".c", ".cats", ".h", ".h.in", ".idc"]
|
|
49
|
+
},
|
|
50
|
+
"c_sharp": {
|
|
51
|
+
"package": "tree-sitter-c-sharp@0.23.5",
|
|
52
|
+
"wasm": {
|
|
53
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-c-sharp@0.23.5/tree-sitter-c_sharp.wasm",
|
|
54
|
+
"sha256": "6f69e1cae44e1c32c1eccc170dc5a9778fb94ff716f71113fe1f8c4299aa2f40",
|
|
55
|
+
"bytes": 5350581
|
|
56
|
+
},
|
|
57
|
+
"tags": [
|
|
58
|
+
{
|
|
59
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-c-sharp@0.23.5/queries/tags.scm",
|
|
60
|
+
"sha256": "4ed08da0162ecd48206ac34bebe7ea9757a8c7b617f6ad8f70c168d685d514fe"
|
|
61
|
+
}
|
|
62
|
+
],
|
|
63
|
+
"license": "MIT",
|
|
64
|
+
"extensions": [".cake", ".cs", ".cs.pp", ".csx", ".linq"]
|
|
65
|
+
},
|
|
66
|
+
"cpp": {
|
|
67
|
+
"package": "tree-sitter-cpp@0.23.4",
|
|
68
|
+
"wasm": {
|
|
69
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-cpp@0.23.4/tree-sitter-cpp.wasm",
|
|
70
|
+
"sha256": "174eb0deb75b2ec7881bcacda9f995648d8e683956e5c2267e69ab6dc503fcbf",
|
|
71
|
+
"bytes": 3434931
|
|
72
|
+
},
|
|
73
|
+
"tags": [
|
|
74
|
+
{
|
|
75
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-cpp@0.23.4/queries/tags.scm",
|
|
76
|
+
"sha256": "029731ca946e32f919491d9f76c85a50e5deb5ad1934e37fd6849312c0d4a705"
|
|
77
|
+
}
|
|
78
|
+
],
|
|
79
|
+
"license": "MIT",
|
|
80
|
+
"extensions": [
|
|
81
|
+
".c++",
|
|
82
|
+
".cc",
|
|
83
|
+
".cp",
|
|
84
|
+
".cpp",
|
|
85
|
+
".cppm",
|
|
86
|
+
".cxx",
|
|
87
|
+
".h++",
|
|
88
|
+
".hh",
|
|
89
|
+
".hpp",
|
|
90
|
+
".hxx",
|
|
91
|
+
".inl",
|
|
92
|
+
".ino",
|
|
93
|
+
".ipp",
|
|
94
|
+
".ixx",
|
|
95
|
+
".re",
|
|
96
|
+
".tcc",
|
|
97
|
+
".tpp",
|
|
98
|
+
".txx"
|
|
99
|
+
]
|
|
100
|
+
},
|
|
101
|
+
"css": {
|
|
102
|
+
"package": "tree-sitter-css@0.25.0",
|
|
103
|
+
"wasm": {
|
|
104
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-css@0.25.0/tree-sitter-css.wasm",
|
|
105
|
+
"sha256": "8a23977fe271357cce6f254ef88c9bebf3854602d8046605aef6a45c02135c59",
|
|
106
|
+
"bytes": 128668
|
|
107
|
+
},
|
|
108
|
+
"tags": [],
|
|
109
|
+
"license": "MIT",
|
|
110
|
+
"extensions": [".css"]
|
|
111
|
+
},
|
|
112
|
+
"elixir": {
|
|
113
|
+
"package": "tree-sitter-elixir@0.3.5",
|
|
114
|
+
"wasm": {
|
|
115
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-elixir@0.3.5/tree-sitter-elixir.wasm",
|
|
116
|
+
"sha256": "ed99093c548c12d43f7e337fd3440e9e2daa2ec671a5e29aadb6c6dcb2232a62",
|
|
117
|
+
"bytes": 1412267
|
|
118
|
+
},
|
|
119
|
+
"tags": [
|
|
120
|
+
{
|
|
121
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-elixir@0.3.5/queries/tags.scm",
|
|
122
|
+
"sha256": "5456eeebf3bfcd8d13cec8bb7638a258523ba2a0e6b8d799e51d27c11e679b49"
|
|
123
|
+
}
|
|
124
|
+
],
|
|
125
|
+
"license": "Apache-2.0",
|
|
126
|
+
"extensions": [".ex", ".exs"]
|
|
127
|
+
},
|
|
128
|
+
"embedded_template": {
|
|
129
|
+
"package": "tree-sitter-embedded-template@0.25.0",
|
|
130
|
+
"wasm": {
|
|
131
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-embedded-template@0.25.0/tree-sitter-embedded_template.wasm",
|
|
132
|
+
"sha256": "d15bbf3cb90901d0372b5599761c7a1ada344a0f11573c173ace7042636a6174",
|
|
133
|
+
"bytes": 5531
|
|
134
|
+
},
|
|
135
|
+
"tags": [],
|
|
136
|
+
"license": "MIT",
|
|
137
|
+
"extensions": [".erb", ".erb.deface", ".rhtml"]
|
|
138
|
+
},
|
|
139
|
+
"go": {
|
|
140
|
+
"package": "tree-sitter-go@0.25.0",
|
|
141
|
+
"wasm": {
|
|
142
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-go@0.25.0/tree-sitter-go.wasm",
|
|
143
|
+
"sha256": "9504573f352b20be7f2f1911754d710622aedc15afff16d5ed8fb5645681aee7",
|
|
144
|
+
"bytes": 217182
|
|
145
|
+
},
|
|
146
|
+
"tags": [
|
|
147
|
+
{
|
|
148
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-go@0.25.0/queries/tags.scm",
|
|
149
|
+
"sha256": "d1a9b1f678fe0278b85054e2dc56a28ef26aa478b8c88fb2b0dd83cdcdb9db35"
|
|
150
|
+
}
|
|
151
|
+
],
|
|
152
|
+
"license": "MIT",
|
|
153
|
+
"extensions": [".go"]
|
|
154
|
+
},
|
|
155
|
+
"html": {
|
|
156
|
+
"package": "tree-sitter-html@0.23.2",
|
|
157
|
+
"wasm": {
|
|
158
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-html@0.23.2/tree-sitter-html.wasm",
|
|
159
|
+
"sha256": "c48fcd82c7ea8bf943180088ba7f28c48b2bb5287874179168bf9d31e394cf85",
|
|
160
|
+
"bytes": 18385
|
|
161
|
+
},
|
|
162
|
+
"tags": [],
|
|
163
|
+
"license": "MIT",
|
|
164
|
+
"extensions": [".hta", ".htm", ".html", ".html.hl", ".xht", ".xhtml"]
|
|
165
|
+
},
|
|
166
|
+
"java": {
|
|
167
|
+
"package": "tree-sitter-java@0.23.5",
|
|
168
|
+
"wasm": {
|
|
169
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-java@0.23.5/tree-sitter-java.wasm",
|
|
170
|
+
"sha256": "4fdeac4ca6ca089f06c6f7e562abcac1733cd465728cc7031ebb73c2019122c4",
|
|
171
|
+
"bytes": 414641
|
|
172
|
+
},
|
|
173
|
+
"tags": [
|
|
174
|
+
{
|
|
175
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-java@0.23.5/queries/tags.scm",
|
|
176
|
+
"sha256": "bcb22147b8582d92743fc973864cefb894a4c12b3957f16f3d472b2ec7cd4c49"
|
|
177
|
+
}
|
|
178
|
+
],
|
|
179
|
+
"license": "MIT",
|
|
180
|
+
"extensions": [".jav", ".java", ".jsh"]
|
|
181
|
+
},
|
|
182
|
+
"javascript": {
|
|
183
|
+
"package": "tree-sitter-javascript@0.25.0",
|
|
184
|
+
"wasm": {
|
|
185
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-javascript@0.25.0/tree-sitter-javascript.wasm",
|
|
186
|
+
"sha256": "5fb488d0cabb4775a594bab85682de5ad6ce83c0d6ac997a9f82dd084d571240",
|
|
187
|
+
"bytes": 411770
|
|
188
|
+
},
|
|
189
|
+
"tags": [
|
|
190
|
+
{
|
|
191
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-javascript@0.25.0/queries/tags.scm",
|
|
192
|
+
"sha256": "6ef988cce5a428a15b5460e3ee96f1478705f965fc6e848a91a18bfa6c6f0212"
|
|
193
|
+
}
|
|
194
|
+
],
|
|
195
|
+
"license": "MIT",
|
|
196
|
+
"extensions": [
|
|
197
|
+
"._js",
|
|
198
|
+
".bones",
|
|
199
|
+
".cjs",
|
|
200
|
+
".es",
|
|
201
|
+
".es6",
|
|
202
|
+
".frag",
|
|
203
|
+
".gs",
|
|
204
|
+
".jake",
|
|
205
|
+
".javascript",
|
|
206
|
+
".js",
|
|
207
|
+
".jsb",
|
|
208
|
+
".jscad",
|
|
209
|
+
".jsfl",
|
|
210
|
+
".jslib",
|
|
211
|
+
".jsm",
|
|
212
|
+
".jspre",
|
|
213
|
+
".jss",
|
|
214
|
+
".jsx",
|
|
215
|
+
".mjs",
|
|
216
|
+
".njs",
|
|
217
|
+
".pac",
|
|
218
|
+
".sjs",
|
|
219
|
+
".ssjs",
|
|
220
|
+
".xsjs",
|
|
221
|
+
".xsjslib"
|
|
222
|
+
]
|
|
223
|
+
},
|
|
224
|
+
"json": {
|
|
225
|
+
"package": "tree-sitter-json@0.24.8",
|
|
226
|
+
"wasm": {
|
|
227
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-json@0.24.8/tree-sitter-json.wasm",
|
|
228
|
+
"sha256": "d2119fb98d5912719b13f9458574f8608d2d29dfbe45f6be1f860ea1fe2a2405",
|
|
229
|
+
"bytes": 5596
|
|
230
|
+
},
|
|
231
|
+
"tags": [],
|
|
232
|
+
"license": "MIT",
|
|
233
|
+
"extensions": [
|
|
234
|
+
".4dform",
|
|
235
|
+
".4dproject",
|
|
236
|
+
".avsc",
|
|
237
|
+
".geojson",
|
|
238
|
+
".gltf",
|
|
239
|
+
".har",
|
|
240
|
+
".ice",
|
|
241
|
+
".json",
|
|
242
|
+
".json-tmlanguage",
|
|
243
|
+
".json.example",
|
|
244
|
+
".jsonl",
|
|
245
|
+
".mcmeta",
|
|
246
|
+
".sarif",
|
|
247
|
+
".slnlaunch",
|
|
248
|
+
".tact",
|
|
249
|
+
".tfstate",
|
|
250
|
+
".tfstate.backup",
|
|
251
|
+
".topojson",
|
|
252
|
+
".webapp",
|
|
253
|
+
".webmanifest",
|
|
254
|
+
".yy",
|
|
255
|
+
".yyp"
|
|
256
|
+
]
|
|
257
|
+
},
|
|
258
|
+
"kotlin": {
|
|
259
|
+
"package": "gh:fwcd/tree-sitter-kotlin@0.3.8",
|
|
260
|
+
"wasm": {
|
|
261
|
+
"url": "https://github.com/fwcd/tree-sitter-kotlin/releases/download/0.3.8/tree-sitter-kotlin.wasm",
|
|
262
|
+
"sha256": "c624e7443b371c28adc5d81674e73067564c12555ebe3ed96a6c8db814b7602d",
|
|
263
|
+
"bytes": 4052625
|
|
264
|
+
},
|
|
265
|
+
"tags": [
|
|
266
|
+
{
|
|
267
|
+
"url": "https://cdn.jsdelivr.net/gh/fwcd/tree-sitter-kotlin@1852ea17b7f60fb3f9d84e0b1555d56b46b39fb1/queries/tags.scm",
|
|
268
|
+
"sha256": "8e7a33f68e154cfff250089e2a6984c42e0c421f55d5d024a647058fe676e7f8"
|
|
269
|
+
}
|
|
270
|
+
],
|
|
271
|
+
"license": "MIT",
|
|
272
|
+
"extensions": [".kt", ".ktm", ".kts"]
|
|
273
|
+
},
|
|
274
|
+
"lua": {
|
|
275
|
+
"package": "@tree-sitter-grammars/tree-sitter-lua@0.4.1",
|
|
276
|
+
"wasm": {
|
|
277
|
+
"url": "https://cdn.jsdelivr.net/npm/@tree-sitter-grammars/tree-sitter-lua@0.4.1/tree-sitter-lua.wasm",
|
|
278
|
+
"sha256": "6d95607fc7d78964cfdf065ccb1ba76be5ed217c5ec0d0a3cace13c59fa1ae43",
|
|
279
|
+
"bytes": 49488
|
|
280
|
+
},
|
|
281
|
+
"tags": [
|
|
282
|
+
{
|
|
283
|
+
"url": "https://cdn.jsdelivr.net/npm/@tree-sitter-grammars/tree-sitter-lua@0.4.1/queries/tags.scm",
|
|
284
|
+
"sha256": "fbe7ac23484845fe5ec15d40100f54d7a92e8b2788648414961bdbddaec9f976"
|
|
285
|
+
}
|
|
286
|
+
],
|
|
287
|
+
"license": "MIT",
|
|
288
|
+
"extensions": [
|
|
289
|
+
".lua",
|
|
290
|
+
".nse",
|
|
291
|
+
".p8",
|
|
292
|
+
".pd_lua",
|
|
293
|
+
".rbxs",
|
|
294
|
+
".rockspec",
|
|
295
|
+
".wlua"
|
|
296
|
+
]
|
|
297
|
+
},
|
|
298
|
+
"objc": {
|
|
299
|
+
"package": "tree-sitter-objc@3.0.2",
|
|
300
|
+
"wasm": {
|
|
301
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-objc@3.0.2/tree-sitter-objc.wasm",
|
|
302
|
+
"sha256": "155bf61fc94941fa9d07c86cd46895f14dfb2549fb7f646faeb83765af05c970",
|
|
303
|
+
"bytes": 5317155
|
|
304
|
+
},
|
|
305
|
+
"tags": [],
|
|
306
|
+
"license": "MIT",
|
|
307
|
+
"extensions": [".m"]
|
|
308
|
+
},
|
|
309
|
+
"ocaml": {
|
|
310
|
+
"package": "gh:tree-sitter/tree-sitter-ocaml@v0.25.0",
|
|
311
|
+
"wasm": {
|
|
312
|
+
"url": "https://github.com/tree-sitter/tree-sitter-ocaml/releases/download/v0.25.0/tree-sitter-ocaml.wasm",
|
|
313
|
+
"sha256": "589e0b53a78fa7b80251cf7c1193b32ccc593849d2987666c0a303f1cbd789fc",
|
|
314
|
+
"bytes": 2515891
|
|
315
|
+
},
|
|
316
|
+
"tags": [
|
|
317
|
+
{
|
|
318
|
+
"url": "https://cdn.jsdelivr.net/gh/tree-sitter/tree-sitter-ocaml@6902a86ab5b3b80c622030210aae2d8cb95eb775/queries/tags.scm",
|
|
319
|
+
"sha256": "bed0a869d8e842e9a5b4e84f0f4940293801b3791c21dcee8b9f73f67776a2d1"
|
|
320
|
+
}
|
|
321
|
+
],
|
|
322
|
+
"license": "MIT",
|
|
323
|
+
"extensions": [".eliom", ".eliomi", ".ml", ".ml4", ".mli", ".mll", ".mly"]
|
|
324
|
+
},
|
|
325
|
+
"php": {
|
|
326
|
+
"package": "tree-sitter-php@0.24.2",
|
|
327
|
+
"wasm": {
|
|
328
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-php@0.24.2/tree-sitter-php.wasm",
|
|
329
|
+
"sha256": "d4df6a6ff08c87c3ec4f9cbb785fe09998a0cb570e03f57d7b19b3acfb146aa7",
|
|
330
|
+
"bytes": 1058041
|
|
331
|
+
},
|
|
332
|
+
"tags": [
|
|
333
|
+
{
|
|
334
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-php@0.24.2/queries/tags.scm",
|
|
335
|
+
"sha256": "4ac5e30f99f3abe5417dcb42219e0790c66f9b4bb3be071bc60160dd012f3cd8"
|
|
336
|
+
}
|
|
337
|
+
],
|
|
338
|
+
"license": "MIT",
|
|
339
|
+
"extensions": [
|
|
340
|
+
".aw",
|
|
341
|
+
".ctp",
|
|
342
|
+
".inc",
|
|
343
|
+
".php",
|
|
344
|
+
".php3",
|
|
345
|
+
".php4",
|
|
346
|
+
".php5",
|
|
347
|
+
".phps",
|
|
348
|
+
".phpt"
|
|
349
|
+
]
|
|
350
|
+
},
|
|
351
|
+
"python": {
|
|
352
|
+
"package": "tree-sitter-python@0.25.0",
|
|
353
|
+
"wasm": {
|
|
354
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-python@0.25.0/tree-sitter-python.wasm",
|
|
355
|
+
"sha256": "16108b50df4ee9a30168794252ab55e7c93bfc5765d7fa0aa3e335752c515f47",
|
|
356
|
+
"bytes": 457883
|
|
357
|
+
},
|
|
358
|
+
"tags": [
|
|
359
|
+
{
|
|
360
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-python@0.25.0/queries/tags.scm",
|
|
361
|
+
"sha256": "d0f3e577878167bfabc30e526e497bce58d1699b9bcabf8ab3a50698efb5ca3e"
|
|
362
|
+
}
|
|
363
|
+
],
|
|
364
|
+
"license": "MIT",
|
|
365
|
+
"extensions": [
|
|
366
|
+
".gyp",
|
|
367
|
+
".gypi",
|
|
368
|
+
".lmi",
|
|
369
|
+
".py",
|
|
370
|
+
".py3",
|
|
371
|
+
".pyde",
|
|
372
|
+
".pyi",
|
|
373
|
+
".pyp",
|
|
374
|
+
".pyt",
|
|
375
|
+
".pyw",
|
|
376
|
+
".rpy",
|
|
377
|
+
".tac",
|
|
378
|
+
".wsgi",
|
|
379
|
+
".xpy"
|
|
380
|
+
]
|
|
381
|
+
},
|
|
382
|
+
"ql": {
|
|
383
|
+
"package": "gh:tree-sitter/tree-sitter-ql@v0.23.1",
|
|
384
|
+
"wasm": {
|
|
385
|
+
"url": "https://github.com/tree-sitter/tree-sitter-ql/releases/download/v0.23.1/tree-sitter-ql.wasm",
|
|
386
|
+
"sha256": "f7f01c27f942a76ffceb30cb194fe669f81a21971126a57d9bf876bdaffa85dc",
|
|
387
|
+
"bytes": 312209
|
|
388
|
+
},
|
|
389
|
+
"tags": [
|
|
390
|
+
{
|
|
391
|
+
"url": "https://cdn.jsdelivr.net/gh/tree-sitter/tree-sitter-ql@1fd627a4e8bff8c24c11987474bd33112bead857/queries/tags.scm",
|
|
392
|
+
"sha256": "62c715ea2d48dad24f85b01b97fda44f07edb90f36b0669c7c1625d6deaf4e60"
|
|
393
|
+
}
|
|
394
|
+
],
|
|
395
|
+
"license": "MIT",
|
|
396
|
+
"extensions": [".ql", ".qll"]
|
|
397
|
+
},
|
|
398
|
+
"ruby": {
|
|
399
|
+
"package": "tree-sitter-ruby@0.23.1",
|
|
400
|
+
"wasm": {
|
|
401
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-ruby@0.23.1/tree-sitter-ruby.wasm",
|
|
402
|
+
"sha256": "09a96427d7c72f0613ed470cd9812223fc4a91d6a9c025c0235cc6bd59ff96f4",
|
|
403
|
+
"bytes": 2106352
|
|
404
|
+
},
|
|
405
|
+
"tags": [
|
|
406
|
+
{
|
|
407
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-ruby@0.23.1/queries/tags.scm",
|
|
408
|
+
"sha256": "ed1e7dc07a95b87aef267e7f9715c6717a70f09efbd7b6f48bbd51c7b7510cf3"
|
|
409
|
+
}
|
|
410
|
+
],
|
|
411
|
+
"license": "MIT",
|
|
412
|
+
"extensions": [
|
|
413
|
+
".builder",
|
|
414
|
+
".eye",
|
|
415
|
+
".gemspec",
|
|
416
|
+
".god",
|
|
417
|
+
".jbuilder",
|
|
418
|
+
".mspec",
|
|
419
|
+
".pluginspec",
|
|
420
|
+
".podspec",
|
|
421
|
+
".prawn",
|
|
422
|
+
".rabl",
|
|
423
|
+
".rake",
|
|
424
|
+
".rb",
|
|
425
|
+
".rbi",
|
|
426
|
+
".rbuild",
|
|
427
|
+
".rbw",
|
|
428
|
+
".rbx",
|
|
429
|
+
".ru",
|
|
430
|
+
".ruby",
|
|
431
|
+
".thor",
|
|
432
|
+
".watchr"
|
|
433
|
+
]
|
|
434
|
+
},
|
|
435
|
+
"rust": {
|
|
436
|
+
"package": "tree-sitter-rust@0.24.0",
|
|
437
|
+
"wasm": {
|
|
438
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-rust@0.24.0/tree-sitter-rust.wasm",
|
|
439
|
+
"sha256": "f65f354215611fd94ad34134b3427eb3d58cbb745df7b6509ba722184db73d57",
|
|
440
|
+
"bytes": 1102547
|
|
441
|
+
},
|
|
442
|
+
"tags": [
|
|
443
|
+
{
|
|
444
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-rust@0.24.0/queries/tags.scm",
|
|
445
|
+
"sha256": "f22867fdebde5cb091861c08d34690dc2540f4318068bf81be9f6b0d348ab8c1"
|
|
446
|
+
}
|
|
447
|
+
],
|
|
448
|
+
"license": "MIT",
|
|
449
|
+
"extensions": [".rs", ".rs.in"]
|
|
450
|
+
},
|
|
451
|
+
"scala": {
|
|
452
|
+
"package": "tree-sitter-scala@0.24.0",
|
|
453
|
+
"wasm": {
|
|
454
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-scala@0.24.0/tree-sitter-scala.wasm",
|
|
455
|
+
"sha256": "b7ec2bb29c19827abcefd18ed5cb5a43596009f96a5d53c5b9d1f9676d7521c3",
|
|
456
|
+
"bytes": 3786700
|
|
457
|
+
},
|
|
458
|
+
"tags": [
|
|
459
|
+
{
|
|
460
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-scala@0.24.0/queries/tags.scm",
|
|
461
|
+
"sha256": "f56794ad2bc9ae5c7ffd332a40fa67a3af65880e18ba4124a0053f0bfff54757"
|
|
462
|
+
}
|
|
463
|
+
],
|
|
464
|
+
"license": "MIT",
|
|
465
|
+
"extensions": [".kojo", ".sbt", ".sc", ".scala"]
|
|
466
|
+
},
|
|
467
|
+
"solidity": {
|
|
468
|
+
"package": "tree-sitter-solidity@1.2.13",
|
|
469
|
+
"wasm": {
|
|
470
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-solidity@1.2.13/tree-sitter-solidity.wasm",
|
|
471
|
+
"sha256": "07420813d7668445152a5d5d2017e0fb84cb27342257e1add3cc7462eec7f811",
|
|
472
|
+
"bytes": 508582
|
|
473
|
+
},
|
|
474
|
+
"tags": [
|
|
475
|
+
{
|
|
476
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-solidity@1.2.13/queries/tags.scm",
|
|
477
|
+
"sha256": "21057fc777d90cba70cb26f1f3df66214ac6f488e06ca17e0233e20678c3ece8"
|
|
478
|
+
}
|
|
479
|
+
],
|
|
480
|
+
"license": "MIT",
|
|
481
|
+
"extensions": [".sol"]
|
|
482
|
+
},
|
|
483
|
+
"swift": {
|
|
484
|
+
"package": "gh:alex-pinkus/tree-sitter-swift@0.7.3",
|
|
485
|
+
"wasm": {
|
|
486
|
+
"url": "https://github.com/alex-pinkus/tree-sitter-swift/releases/download/0.7.3/tree-sitter-swift.wasm",
|
|
487
|
+
"sha256": "0258a7ef17303a8079ffe0748b3583d59656b5c3e8653fca7b6451b3e6689eb2",
|
|
488
|
+
"bytes": 3825025
|
|
489
|
+
},
|
|
490
|
+
"tags": [
|
|
491
|
+
{
|
|
492
|
+
"url": "https://cdn.jsdelivr.net/gh/alex-pinkus/tree-sitter-swift@b8b22bffbb3441780e6471665bacfb263741c86a/queries/tags.scm",
|
|
493
|
+
"sha256": "6d3884e3f785d621128356a23ac81dfc438d9a853b8ee24b8070dc2caaf631ca"
|
|
494
|
+
}
|
|
495
|
+
],
|
|
496
|
+
"license": "MIT",
|
|
497
|
+
"extensions": [".swift"]
|
|
498
|
+
},
|
|
499
|
+
"tlaplus": {
|
|
500
|
+
"package": "@tlaplus/tree-sitter-tlaplus@1.5.0",
|
|
501
|
+
"wasm": {
|
|
502
|
+
"url": "https://cdn.jsdelivr.net/npm/@tlaplus/tree-sitter-tlaplus@1.5.0/tree-sitter-tlaplus.wasm",
|
|
503
|
+
"sha256": "40e066a8cf25a4415dbb5340bb401c80aa96837d05ee2710b00ae951b046b22c",
|
|
504
|
+
"bytes": 4878089
|
|
505
|
+
},
|
|
506
|
+
"tags": [],
|
|
507
|
+
"license": "MIT",
|
|
508
|
+
"extensions": [".tla"]
|
|
509
|
+
},
|
|
510
|
+
"toml": {
|
|
511
|
+
"package": "@tree-sitter-grammars/tree-sitter-toml@0.7.0",
|
|
512
|
+
"wasm": {
|
|
513
|
+
"url": "https://cdn.jsdelivr.net/npm/@tree-sitter-grammars/tree-sitter-toml@0.7.0/tree-sitter-toml.wasm",
|
|
514
|
+
"sha256": "1ac6a83826c35a68857f8325e00c78f6bcbef4eb6db3931a6cf3041f76e5e09f",
|
|
515
|
+
"bytes": 24040
|
|
516
|
+
},
|
|
517
|
+
"tags": [],
|
|
518
|
+
"license": "MIT",
|
|
519
|
+
"extensions": [".toml", ".toml.example"]
|
|
520
|
+
},
|
|
521
|
+
"tsx": {
|
|
522
|
+
"package": "tree-sitter-typescript@0.23.2",
|
|
523
|
+
"wasm": {
|
|
524
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-typescript@0.23.2/tree-sitter-tsx.wasm",
|
|
525
|
+
"sha256": "79e5da75ea62855a0cd67177685f0164eac87d5f630b3cbe1e0a099751ad30f8",
|
|
526
|
+
"bytes": 1445638
|
|
527
|
+
},
|
|
528
|
+
"tags": [
|
|
529
|
+
{
|
|
530
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-javascript@0.25.0/queries/tags.scm",
|
|
531
|
+
"sha256": "6ef988cce5a428a15b5460e3ee96f1478705f965fc6e848a91a18bfa6c6f0212"
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-typescript@0.23.2/queries/tags.scm",
|
|
535
|
+
"sha256": "b391288bcc71b513a5df7c9bb232d8bc7418d7e274b125aa0aa4bdd6121a0338"
|
|
536
|
+
}
|
|
537
|
+
],
|
|
538
|
+
"license": "MIT",
|
|
539
|
+
"extensions": [".tsx"]
|
|
540
|
+
},
|
|
541
|
+
"typescript": {
|
|
542
|
+
"package": "tree-sitter-typescript@0.23.2",
|
|
543
|
+
"wasm": {
|
|
544
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-typescript@0.23.2/tree-sitter-typescript.wasm",
|
|
545
|
+
"sha256": "778025db5a8be0e70f8ccc3671e486dfeddd048c25d9e8a70c26de2e1bf6f97d",
|
|
546
|
+
"bytes": 1413849
|
|
547
|
+
},
|
|
548
|
+
"tags": [
|
|
549
|
+
{
|
|
550
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-javascript@0.25.0/queries/tags.scm",
|
|
551
|
+
"sha256": "6ef988cce5a428a15b5460e3ee96f1478705f965fc6e848a91a18bfa6c6f0212"
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"url": "https://cdn.jsdelivr.net/npm/tree-sitter-typescript@0.23.2/queries/tags.scm",
|
|
555
|
+
"sha256": "b391288bcc71b513a5df7c9bb232d8bc7418d7e274b125aa0aa4bdd6121a0338"
|
|
556
|
+
}
|
|
557
|
+
],
|
|
558
|
+
"license": "MIT",
|
|
559
|
+
"extensions": [".cts", ".mts", ".ts"]
|
|
560
|
+
},
|
|
561
|
+
"yaml": {
|
|
562
|
+
"package": "@tree-sitter-grammars/tree-sitter-yaml@0.7.1",
|
|
563
|
+
"wasm": {
|
|
564
|
+
"url": "https://cdn.jsdelivr.net/npm/@tree-sitter-grammars/tree-sitter-yaml@0.7.1/tree-sitter-yaml.wasm",
|
|
565
|
+
"sha256": "e752dc21c3591df9b45692fe417d101f45d1828c28c44d79005f4066dc7e4e91",
|
|
566
|
+
"bytes": 189255
|
|
567
|
+
},
|
|
568
|
+
"tags": [],
|
|
569
|
+
"license": "MIT",
|
|
570
|
+
"extensions": [
|
|
571
|
+
".mir",
|
|
572
|
+
".reek",
|
|
573
|
+
".rviz",
|
|
574
|
+
".sublime-syntax",
|
|
575
|
+
".syntax",
|
|
576
|
+
".yaml",
|
|
577
|
+
".yaml-tmlanguage",
|
|
578
|
+
".yaml.sed",
|
|
579
|
+
".yml",
|
|
580
|
+
".yml.mysql"
|
|
581
|
+
]
|
|
582
|
+
},
|
|
583
|
+
"zig": {
|
|
584
|
+
"package": "@tree-sitter-grammars/tree-sitter-zig@1.1.2",
|
|
585
|
+
"wasm": {
|
|
586
|
+
"url": "https://cdn.jsdelivr.net/npm/@tree-sitter-grammars/tree-sitter-zig@1.1.2/tree-sitter-zig.wasm",
|
|
587
|
+
"sha256": "54b3b83dd9c62da5815f06132bc3fc914d9dcc780370b32416446a0b7969e8c6",
|
|
588
|
+
"bytes": 691726
|
|
589
|
+
},
|
|
590
|
+
"tags": [],
|
|
591
|
+
"license": "MIT",
|
|
592
|
+
"extensions": [".zig", ".zig.zon"]
|
|
593
|
+
}
|
|
594
|
+
}
|
|
595
|
+
}
|