@sma1lboy/kobe 0.0.1

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 ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/package.json",
3
+ "name": "@sma1lboy/kobe",
4
+ "version": "0.0.1",
5
+ "description": "TUI orchestrator for Claude Code (codename)",
6
+ "type": "module",
7
+ "packageManager": "bun@1.3.13",
8
+ "bin": {
9
+ "kobe": "dist/index.js"
10
+ },
11
+ "files": [
12
+ "dist",
13
+ "README.md",
14
+ "LICENSE"
15
+ ],
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/Sma1lboy/kobe.git"
22
+ },
23
+ "homepage": "https://github.com/Sma1lboy/kobe#readme",
24
+ "bugs": {
25
+ "url": "https://github.com/Sma1lboy/kobe/issues"
26
+ },
27
+ "engines": {
28
+ "bun": ">=1.0.0"
29
+ },
30
+ "scripts": {
31
+ "dev": "bun --preload @opentui/solid/preload --conditions=browser ./src/cli/index.ts",
32
+ "build": "bun run scripts/build.ts",
33
+ "typecheck": "tsc --noEmit",
34
+ "test": "vitest run --passWithNoTests",
35
+ "test:behavior": "vitest run test/behavior --passWithNoTests",
36
+ "lint": "biome check .",
37
+ "prepublishOnly": "bun run typecheck && bun run build"
38
+ },
39
+ "dependencies": {
40
+ "@opentui/core": "0.2.4",
41
+ "@opentui/solid": "0.2.4",
42
+ "solid-js": "1.9.10"
43
+ },
44
+ "devDependencies": {
45
+ "@biomejs/biome": "1.9.4",
46
+ "@tsconfig/bun": "1.0.9",
47
+ "@types/bun": "1.3.12",
48
+ "node-pty": "1.1.0",
49
+ "typescript": "5.8.2",
50
+ "vitest": "2.1.9"
51
+ },
52
+ "trustedDependencies": []
53
+ }