@rkarim08/sia 1.0.0 → 1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rkarim08/sia",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Persistent graph memory for AI coding agents",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -45,6 +45,7 @@
45
45
  "@ai-sdk/anthropic": "^3.0.58",
46
46
  "@ai-sdk/openai": "^3.0.41",
47
47
  "@anthropic-ai/sdk": "^0.79.0",
48
+ "@davisvaughan/tree-sitter-r": "^1.2.0",
48
49
  "@libsql/client": "^0.10.0",
49
50
  "@modelcontextprotocol/sdk": "^1.27.1",
50
51
  "@napi-rs/keyring": "^1.1.8",
@@ -67,7 +68,6 @@
67
68
  "tree-sitter-ocaml": "^0.24.2",
68
69
  "tree-sitter-php": "^0.24.2",
69
70
  "tree-sitter-python": "^0.25.0",
70
- "tree-sitter-r": "^0.0.1-security",
71
71
  "tree-sitter-ruby": "^0.23.1",
72
72
  "tree-sitter-rust": "^0.24.0",
73
73
  "tree-sitter-scala": "^0.24.0",
@@ -222,7 +222,7 @@ const TIER_B: LanguageConfig[] = [
222
222
  {
223
223
  name: "r",
224
224
  extensions: [".r", ".R"],
225
- treeSitterGrammar: "tree-sitter-r",
225
+ treeSitterGrammar: "@davisvaughan/tree-sitter-r",
226
226
  tier: "B",
227
227
  extractors: { functions: true, classes: false, imports: true, calls: false },
228
228
  },