infiniloom-node 0.6.2 → 0.7.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.
- package/README.md +1 -1
- package/index.d.ts +0 -2491
- package/infiniloom.darwin-arm64.node +0 -0
- package/infiniloom.darwin-x64.node +0 -0
- package/infiniloom.linux-arm64-gnu.node +0 -0
- package/infiniloom.linux-x64-gnu.node +0 -0
- package/package.json +38 -3
- package/schemas.ts +692 -0
- package/tsconfig.json +40 -0
- package/types.ts +592 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "infiniloom-node",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
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",
|
|
@@ -64,18 +64,53 @@
|
|
|
64
64
|
"artifacts": "napi artifacts",
|
|
65
65
|
"build": "napi build --platform --release",
|
|
66
66
|
"build:debug": "napi build --platform",
|
|
67
|
-
"
|
|
67
|
+
"build:types": "tsc -p tsconfig.json --declaration --emitDeclarationOnly --outDir .",
|
|
68
|
+
"prepublishOnly": "napi prepublish -t npm && npm run build:types",
|
|
68
69
|
"test": "node --test",
|
|
70
|
+
"typecheck": "tsc --noEmit",
|
|
69
71
|
"version": "napi version"
|
|
70
72
|
},
|
|
73
|
+
"dependencies": {
|
|
74
|
+
"zod": "^4.3.0"
|
|
75
|
+
},
|
|
71
76
|
"devDependencies": {
|
|
72
|
-
"@napi-rs/cli": "^
|
|
77
|
+
"@napi-rs/cli": "^3.5.0",
|
|
78
|
+
"typescript": "^5.3.0"
|
|
73
79
|
},
|
|
74
80
|
"files": [
|
|
75
81
|
"index.js",
|
|
76
82
|
"index.d.ts",
|
|
83
|
+
"types.ts",
|
|
84
|
+
"types.d.ts",
|
|
85
|
+
"schemas.ts",
|
|
86
|
+
"schemas.d.ts",
|
|
87
|
+
"schemas.js",
|
|
88
|
+
"tsconfig.json",
|
|
77
89
|
"*.node"
|
|
78
90
|
],
|
|
91
|
+
"exports": {
|
|
92
|
+
".": {
|
|
93
|
+
"types": "./index.d.ts",
|
|
94
|
+
"require": "./index.js",
|
|
95
|
+
"import": "./index.js"
|
|
96
|
+
},
|
|
97
|
+
"./types": {
|
|
98
|
+
"types": "./types.d.ts",
|
|
99
|
+
"require": "./types.js",
|
|
100
|
+
"import": "./types.js"
|
|
101
|
+
},
|
|
102
|
+
"./schemas": {
|
|
103
|
+
"types": "./schemas.d.ts",
|
|
104
|
+
"require": "./schemas.js",
|
|
105
|
+
"import": "./schemas.js"
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
"typesVersions": {
|
|
109
|
+
"*": {
|
|
110
|
+
"types": ["./types.d.ts"],
|
|
111
|
+
"schemas": ["./schemas.d.ts"]
|
|
112
|
+
}
|
|
113
|
+
},
|
|
79
114
|
"bugs": {
|
|
80
115
|
"url": "https://github.com/Topos-Labs/infiniloom/issues"
|
|
81
116
|
},
|