infiniloom-node 0.6.0 → 0.6.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/index.js
CHANGED
|
@@ -310,7 +310,7 @@ if (!nativeBinding) {
|
|
|
310
310
|
throw new Error(`Failed to load native binding`)
|
|
311
311
|
}
|
|
312
312
|
|
|
313
|
-
const { version, pack, scan, scanWithOptions, countTokens, Infiniloom, semanticCompress, isGitRepo, GitRepo, scanSecurity, buildIndex, indexStatus, findSymbol, getCallers, getCallees, getReferences, findSymbolFiltered, getCallersFiltered, getCalleesFiltered, getReferencesFiltered, findSymbolFilteredAsync, getCallersFilteredAsync, getCalleesFilteredAsync, getReferencesFilteredAsync, getCallGraph, findSymbolAsync, getCallersAsync, getCalleesAsync, getReferencesAsync, getCallGraphAsync, chunk, analyzeImpact, getDiffContext, packAsync, scanAsync, buildIndexAsync, chunkAsync, analyzeImpactAsync, getDiffContextAsync, getSymbolsInFile, getSymbolSource, getChangedSymbols, getTestsForFile, getCallSites, getSymbolsInFileAsync, getSymbolSourceAsync, getChangedSymbolsAsync, getTestsForFileAsync, getCallSitesAsync, getChangedSymbolsFiltered, getTransitiveCallers, getCallSitesWithContext, getChangedSymbolsFilteredAsync, getTransitiveCallersAsync, getCallSitesWithContextAsync } = nativeBinding
|
|
313
|
+
const { version, pack, scan, scanWithOptions, countTokens, Infiniloom, semanticCompress, isGitRepo, GitRepo, scanSecurity, buildIndex, indexStatus, findSymbol, getCallers, getCallees, getReferences, findSymbolFiltered, getCallersFiltered, getCalleesFiltered, getReferencesFiltered, findSymbolFilteredAsync, getCallersFilteredAsync, getCalleesFilteredAsync, getReferencesFilteredAsync, getCallGraph, findSymbolAsync, getCallersAsync, getCalleesAsync, getReferencesAsync, getCallGraphAsync, chunk, analyzeImpact, getDiffContext, packAsync, scanAsync, buildIndexAsync, chunkAsync, analyzeImpactAsync, getDiffContextAsync, getSymbolsInFile, getSymbolSource, getChangedSymbols, getTestsForFile, getCallSites, getSymbolsInFileAsync, getSymbolSourceAsync, getChangedSymbolsAsync, getTestsForFileAsync, getCallSitesAsync, getChangedSymbolsFiltered, getTransitiveCallers, getCallSitesWithContext, getChangedSymbolsFilteredAsync, getTransitiveCallersAsync, getCallSitesWithContextAsync, embed, embedAsync, loadEmbedManifest, loadEmbedManifestAsync, deleteEmbedManifest, deleteEmbedManifestAsync, extractDocumentation, extractDocumentationAsync, detectDeadCode, detectDeadCodeAsync, detectBreakingChanges, detectBreakingChangesAsync } = nativeBinding
|
|
314
314
|
|
|
315
315
|
module.exports.version = version
|
|
316
316
|
module.exports.pack = pack
|
|
@@ -367,3 +367,15 @@ module.exports.getCallSitesWithContext = getCallSitesWithContext
|
|
|
367
367
|
module.exports.getChangedSymbolsFilteredAsync = getChangedSymbolsFilteredAsync
|
|
368
368
|
module.exports.getTransitiveCallersAsync = getTransitiveCallersAsync
|
|
369
369
|
module.exports.getCallSitesWithContextAsync = getCallSitesWithContextAsync
|
|
370
|
+
module.exports.embed = embed
|
|
371
|
+
module.exports.embedAsync = embedAsync
|
|
372
|
+
module.exports.loadEmbedManifest = loadEmbedManifest
|
|
373
|
+
module.exports.loadEmbedManifestAsync = loadEmbedManifestAsync
|
|
374
|
+
module.exports.deleteEmbedManifest = deleteEmbedManifest
|
|
375
|
+
module.exports.deleteEmbedManifestAsync = deleteEmbedManifestAsync
|
|
376
|
+
module.exports.extractDocumentation = extractDocumentation
|
|
377
|
+
module.exports.extractDocumentationAsync = extractDocumentationAsync
|
|
378
|
+
module.exports.detectDeadCode = detectDeadCode
|
|
379
|
+
module.exports.detectDeadCodeAsync = detectDeadCodeAsync
|
|
380
|
+
module.exports.detectBreakingChanges = detectBreakingChanges
|
|
381
|
+
module.exports.detectBreakingChangesAsync = detectBreakingChangesAsync
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "infiniloom-node",
|
|
3
|
-
"version": "0.6.
|
|
4
|
-
"description": "Node.js bindings for
|
|
3
|
+
"version": "0.6.1",
|
|
4
|
+
"description": "Node.js bindings for Infiniloom - AST-aware code context engine for RAG and vector databases. Tree-sitter parsing, PageRank ranking, BLAKE3 content-addressable chunks, 27+ tokenizers.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
7
|
"napi": {
|
|
@@ -30,11 +30,30 @@
|
|
|
30
30
|
"keywords": [
|
|
31
31
|
"infiniloom",
|
|
32
32
|
"llm",
|
|
33
|
-
"
|
|
34
|
-
"
|
|
33
|
+
"rag",
|
|
34
|
+
"retrieval-augmented-generation",
|
|
35
|
+
"vector-database",
|
|
36
|
+
"pinecone",
|
|
37
|
+
"weaviate",
|
|
38
|
+
"qdrant",
|
|
39
|
+
"embeddings",
|
|
40
|
+
"code-context",
|
|
35
41
|
"code-analysis",
|
|
42
|
+
"ast",
|
|
43
|
+
"tree-sitter",
|
|
44
|
+
"pagerank",
|
|
45
|
+
"content-addressable",
|
|
46
|
+
"blake3",
|
|
47
|
+
"claude",
|
|
48
|
+
"gpt4o",
|
|
49
|
+
"gpt5",
|
|
50
|
+
"gemini",
|
|
51
|
+
"llama",
|
|
36
52
|
"napi-rs",
|
|
37
|
-
"rust"
|
|
53
|
+
"rust",
|
|
54
|
+
"ai-tools",
|
|
55
|
+
"tiktoken",
|
|
56
|
+
"code-chunking"
|
|
38
57
|
],
|
|
39
58
|
"engines": {
|
|
40
59
|
"node": ">= 16"
|