@saasontools/strauss-kb 0.1.15 → 0.1.17

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,127 @@
1
+ {
2
+ "linguist": "v9.7.0",
3
+ "packs": {
4
+ "bash": {
5
+ "package": "tree-sitter-bash",
6
+ "tags": null,
7
+ "linguist": "Shell"
8
+ },
9
+ "c": {
10
+ "package": "tree-sitter-c",
11
+ "claims": [".h"]
12
+ },
13
+ "c_sharp": {
14
+ "package": "tree-sitter-c-sharp",
15
+ "wasm": "tree-sitter-c_sharp.wasm",
16
+ "linguist": "C#"
17
+ },
18
+ "cpp": {
19
+ "package": "tree-sitter-cpp",
20
+ "linguist": "C++"
21
+ },
22
+ "css": {
23
+ "package": "tree-sitter-css",
24
+ "tags": null
25
+ },
26
+ "elixir": {
27
+ "package": "tree-sitter-elixir"
28
+ },
29
+ "embedded_template": {
30
+ "package": "tree-sitter-embedded-template",
31
+ "wasm": "tree-sitter-embedded_template.wasm",
32
+ "tags": null,
33
+ "linguist": "HTML+ERB"
34
+ },
35
+ "go": {
36
+ "package": "tree-sitter-go"
37
+ },
38
+ "html": {
39
+ "package": "tree-sitter-html",
40
+ "tags": null
41
+ },
42
+ "java": {
43
+ "package": "tree-sitter-java"
44
+ },
45
+ "javascript": {
46
+ "package": "tree-sitter-javascript"
47
+ },
48
+ "json": {
49
+ "package": "tree-sitter-json",
50
+ "tags": null
51
+ },
52
+ "kotlin": {
53
+ "package": "gh:fwcd/tree-sitter-kotlin",
54
+ "wasm": "gh-release:fwcd/tree-sitter-kotlin@0.3.8/tree-sitter-kotlin.wasm",
55
+ "tags": "gh:fwcd/tree-sitter-kotlin@main/queries/tags.scm"
56
+ },
57
+ "lua": {
58
+ "package": "@tree-sitter-grammars/tree-sitter-lua"
59
+ },
60
+ "objc": {
61
+ "package": "tree-sitter-objc",
62
+ "tags": null,
63
+ "extensions": [".m"]
64
+ },
65
+ "ocaml": {
66
+ "package": "gh:tree-sitter/tree-sitter-ocaml"
67
+ },
68
+ "php": {
69
+ "package": "tree-sitter-php",
70
+ "claims": [".inc"]
71
+ },
72
+ "python": {
73
+ "package": "tree-sitter-python"
74
+ },
75
+ "ql": {
76
+ "package": "gh:tree-sitter/tree-sitter-ql",
77
+ "linguist": "CodeQL"
78
+ },
79
+ "ruby": {
80
+ "package": "tree-sitter-ruby"
81
+ },
82
+ "rust": {
83
+ "package": "tree-sitter-rust"
84
+ },
85
+ "scala": {
86
+ "package": "tree-sitter-scala"
87
+ },
88
+ "solidity": {
89
+ "package": "tree-sitter-solidity"
90
+ },
91
+ "swift": {
92
+ "package": "gh:alex-pinkus/tree-sitter-swift"
93
+ },
94
+ "tlaplus": {
95
+ "package": "@tlaplus/tree-sitter-tlaplus",
96
+ "tags": null,
97
+ "linguist": "TLA"
98
+ },
99
+ "toml": {
100
+ "package": "@tree-sitter-grammars/tree-sitter-toml",
101
+ "tags": null
102
+ },
103
+ "tsx": {
104
+ "package": "tree-sitter-typescript",
105
+ "wasm": "tree-sitter-tsx.wasm",
106
+ "tags": [
107
+ "npm:tree-sitter-javascript/queries/tags.scm",
108
+ "queries/tags.scm"
109
+ ]
110
+ },
111
+ "typescript": {
112
+ "package": "tree-sitter-typescript",
113
+ "tags": [
114
+ "npm:tree-sitter-javascript/queries/tags.scm",
115
+ "queries/tags.scm"
116
+ ]
117
+ },
118
+ "yaml": {
119
+ "package": "@tree-sitter-grammars/tree-sitter-yaml",
120
+ "tags": null
121
+ },
122
+ "zig": {
123
+ "package": "@tree-sitter-grammars/tree-sitter-zig",
124
+ "tags": null
125
+ }
126
+ }
127
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saasontools/strauss-kb",
3
- "version": "0.1.15",
3
+ "version": "0.1.17",
4
4
  "description": "Knowledge base of markdown records with standing, supersession and trace: library, CLI, and MCP server over one command set",
5
5
  "license": "MIT",
6
6
  "author": "Assaf Kamil",
@@ -28,6 +28,9 @@
28
28
  },
29
29
  "files": [
30
30
  "dist",
31
+ "grammars/packs.json",
32
+ "grammars/manifest.json",
33
+ "grammars/README.md",
31
34
  "README.md",
32
35
  "ARCHITECTURE.md",
33
36
  "LICENSE"
@@ -53,6 +56,7 @@
53
56
  "dependencies": {
54
57
  "@modelcontextprotocol/sdk": "^1.30.0",
55
58
  "gray-matter": "^4.0.3",
59
+ "web-tree-sitter": "~0.27.0",
56
60
  "zod": "^4.5.4"
57
61
  },
58
62
  "peerDependencies": {
@@ -67,6 +71,7 @@
67
71
  "build": "tsup",
68
72
  "typecheck": "tsc --noEmit",
69
73
  "test": "vitest run",
70
- "lint": "eslint ."
74
+ "lint": "eslint .",
75
+ "grammars": "node scripts/grammars.mjs"
71
76
  }
72
77
  }