@maria_rcks/t1code 0.0.8 → 0.0.10

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.
@@ -0,0 +1,27 @@
1
+ ; Query from: https://raw.githubusercontent.com/nvim-treesitter/nvim-treesitter/refs/heads/master/queries/markdown/injections.scm
2
+ (fenced_code_block
3
+ (info_string
4
+ (language) @_lang)
5
+ (code_fence_content) @injection.content
6
+ (#set-lang-from-info-string! @_lang))
7
+
8
+ ((html_block) @injection.content
9
+ (#set! injection.language "html")
10
+ (#set! injection.combined)
11
+ (#set! injection.include-children))
12
+
13
+ ((minus_metadata) @injection.content
14
+ (#set! injection.language "yaml")
15
+ (#offset! @injection.content 1 0 -1 0)
16
+ (#set! injection.include-children))
17
+
18
+ ((plus_metadata) @injection.content
19
+ (#set! injection.language "toml")
20
+ (#offset! @injection.content 1 0 -1 0)
21
+ (#set! injection.include-children))
22
+
23
+ ([
24
+ (inline)
25
+ (pipe_table_cell)
26
+ ] @injection.content
27
+ (#set! injection.language "markdown_inline"))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maria_rcks/t1code",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "description": "Terminal-first T3 Code fork with an OpenTUI client",
5
5
  "homepage": "https://github.com/maria-rcks/t1code#readme",
6
6
  "bugs": {
@@ -27,7 +27,7 @@
27
27
  "scripts": {
28
28
  "dev": "bun run src/index.tsx",
29
29
  "dev:headless": "T3CODE_HEADLESS=1 bun run src/index.tsx",
30
- "build": "tsdown --config tsdown.config.ts && node scripts/bundle-server-dist.mjs",
30
+ "build": "bun run scripts/build-runtime.mjs && node scripts/bundle-server-dist.mjs",
31
31
  "prepack": "bun run build",
32
32
  "start": "bun dist/index.mjs",
33
33
  "typecheck": "tsc --noEmit",
@@ -50,6 +50,14 @@
50
50
  "typescript": "catalog:",
51
51
  "vitest": "catalog:"
52
52
  },
53
+ "optionalDependencies": {
54
+ "@opentui/core-darwin-arm64": "0.1.90",
55
+ "@opentui/core-darwin-x64": "0.1.90",
56
+ "@opentui/core-linux-arm64": "0.1.90",
57
+ "@opentui/core-linux-x64": "0.1.90",
58
+ "@opentui/core-win32-arm64": "0.1.90",
59
+ "@opentui/core-win32-x64": "0.1.90"
60
+ },
53
61
  "engines": {
54
62
  "bun": ">=1.3.9",
55
63
  "node": "^22.16 || ^23.11 || >=24.10"