katana-ai 1.0.0

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/dist/katana ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "katana-ai",
3
+ "version": "1.0.0",
4
+ "description": "Sharp. Precise. Powerful. A TUI application built with OpenTUI.",
5
+ "type": "module",
6
+ "bin": {
7
+ "kat": "./bin/katana.js"
8
+ },
9
+ "files": [
10
+ "bin/",
11
+ "dist/"
12
+ ],
13
+ "scripts": {
14
+ "dev": "bun run --watch src/index.tsx",
15
+ "build": "bun build src/index.tsx --outdir dist --target bun",
16
+ "build:compile": "bun build --compile src/index.tsx --outfile dist/katana",
17
+ "build:macos-arm64": "bun build --compile --target=bun-darwin-arm64 src/index.tsx --outfile dist/katana-darwin-arm64",
18
+ "build:macos-x64": "bun build --compile --target=bun-darwin-x64 src/index.tsx --outfile dist/katana-darwin-x64",
19
+ "build:linux-x64": "bun build --compile --target=bun-linux-x64 src/index.tsx --outfile dist/katana-linux-x64",
20
+ "build:linux-arm64": "bun build --compile --target=bun-linux-arm64 src/index.tsx --outfile dist/katana-linux-arm64",
21
+ "build:windows": "bun build --compile --target=bun-windows-x64 src/index.tsx --outfile dist/katana-windows-x64.exe",
22
+ "prepublishOnly": "bun run build"
23
+ },
24
+ "keywords": [
25
+ "cli",
26
+ "tui",
27
+ "terminal",
28
+ "bun",
29
+ "opentui"
30
+ ],
31
+ "license": "MIT",
32
+ "engines": {
33
+ "bun": ">=1.0.0"
34
+ },
35
+ "devDependencies": {
36
+ "@types/bun": "latest"
37
+ },
38
+ "peerDependencies": {
39
+ "typescript": "^5"
40
+ },
41
+ "dependencies": {
42
+ "@opentui/core": "^0.1.68",
43
+ "@opentui/react": "^0.1.68",
44
+ "@types/yargs": "^17.0.35",
45
+ "react": "^19.2.3",
46
+ "yargs": "^18.0.0"
47
+ }
48
+ }