@absolutejs/rag 0.7.0 → 0.8.0-beta.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/package.json CHANGED
@@ -1,239 +1,163 @@
1
1
  {
2
- "name": "@absolutejs/rag",
3
- "version": "0.7.0",
4
- "homepage": "https://github.com/absolutejs/rag",
5
- "bugs": {
6
- "url": "https://github.com/absolutejs/rag/issues"
7
- },
8
- "license": "BSL-1.1",
9
- "description": "Standalone RAG ingestion, sync, retrieval, evaluation, clients, and framework adapters extracted from AbsoluteJS",
10
- "type": "module",
11
- "main": "./dist/index.js",
12
- "types": "./dist/src/index.d.ts",
13
- "files": [
14
- "dist",
15
- "README.md"
16
- ],
17
- "exports": {
18
- ".": {
19
- "import": "./dist/index.js",
20
- "types": "./dist/src/index.d.ts"
21
- },
22
- "./adapter-kit": {
23
- "import": "./dist/adapter-kit/index.js",
24
- "types": "./dist/src/adapter-kit/index.d.ts"
25
- },
26
- "./client": {
27
- "import": "./dist/client/index.js",
28
- "types": "./dist/src/client/index.d.ts"
29
- },
30
- "./client/ui": {
31
- "import": "./dist/client/ui.js",
32
- "types": "./dist/src/client/ui.d.ts"
33
- },
34
- "./ui": {
35
- "import": "./dist/presentation/ui.js",
36
- "types": "./dist/src/presentation/ui.d.ts"
37
- },
38
- "./quality": {
39
- "import": "./dist/quality/quality.js",
40
- "types": "./dist/src/quality/quality.d.ts"
41
- },
42
- "./react": {
43
- "import": "./dist/react/index.js",
44
- "types": "./dist/src/react/index.d.ts"
45
- },
46
- "./vue": {
47
- "import": "./dist/vue/index.js",
48
- "types": "./dist/src/vue/index.d.ts"
49
- },
50
- "./svelte": {
51
- "import": "./dist/svelte/index.js",
52
- "types": "./dist/src/svelte/index.d.ts"
53
- },
54
- "./angular": {
55
- "import": "./dist/angular/index.js",
56
- "types": "./dist/src/angular/index.d.ts"
57
- },
58
- "./manifest": {
59
- "import": "./dist/manifest.js",
60
- "types": "./dist/src/manifest.d.ts"
61
- },
62
- "./manifest.json": "./dist/manifest.json"
63
- },
64
- "absolutejs": {
65
- "manifestContract": 2,
66
- "runtimePeers": {
67
- "@absolutejs/ai": {
68
- "artifactImports": [
69
- "@absolutejs/ai",
70
- "@absolutejs/ai/angular",
71
- "@absolutejs/ai/client",
72
- "@absolutejs/ai/react",
73
- "@absolutejs/ai/vue"
74
- ],
75
- "artifactReferences": [],
76
- "buildExternals": [],
77
- "optional": false,
78
- "range": ">=0.0.46 <0.1",
79
- "tested": "0.0.47"
80
- },
81
- "@absolutejs/sync": {
82
- "artifactImports": [
83
- "@absolutejs/sync/engine"
84
- ],
85
- "artifactReferences": [],
86
- "buildExternals": [],
87
- "optional": false,
88
- "range": ">=2.9.1 <3",
89
- "tested": "2.11.0"
90
- },
91
- "@angular/core": {
92
- "artifactImports": [
93
- "@angular/core"
94
- ],
95
- "artifactReferences": [],
96
- "buildExternals": [],
97
- "optional": true,
98
- "range": "^21.0.0",
99
- "tested": "21.2.6"
100
- },
101
- "elysia": {
102
- "artifactImports": [
103
- "elysia"
104
- ],
105
- "artifactReferences": [],
106
- "buildExternals": [],
107
- "optional": false,
108
- "range": "^1.4.18",
109
- "tested": "1.4.29"
110
- },
111
- "react": {
112
- "artifactImports": [
113
- "react"
114
- ],
115
- "artifactReferences": [],
116
- "buildExternals": [],
117
- "optional": true,
118
- "range": "^19.2.0",
119
- "tested": "19.2.1"
120
- },
121
- "svelte": {
122
- "artifactImports": [
123
- "svelte/store"
124
- ],
125
- "artifactReferences": [],
126
- "buildExternals": [],
127
- "optional": true,
128
- "range": "^5.35.2",
129
- "tested": "5.55.0"
130
- },
131
- "vue": {
132
- "artifactImports": [
133
- "vue"
134
- ],
135
- "artifactReferences": [],
136
- "buildExternals": [],
137
- "optional": true,
138
- "range": "^3.5.27",
139
- "tested": "3.5.27"
140
- }
141
- }
142
- },
143
- "dependencies": {
144
- "@absolutejs/manifest": "^0.7.2",
145
- "@sinclair/typebox": "^0.34.0"
146
- },
147
- "peerDependencies": {
148
- "@angular/core": "^21.0.0",
149
- "elysia": "^1.4.18",
150
- "react": "^19.2.0",
151
- "svelte": "^5.35.2",
152
- "vue": "^3.5.27",
153
- "@absolutejs/sync": ">=2.9.1 <3",
154
- "@absolutejs/ai": ">=0.0.46 <0.1"
155
- },
156
- "peerDependenciesMeta": {
157
- "@angular/core": {
158
- "optional": true
159
- },
160
- "react": {
161
- "optional": true
162
- },
163
- "svelte": {
164
- "optional": true
165
- },
166
- "vue": {
167
- "optional": true
168
- }
169
- },
170
- "devDependencies": {
171
- "@absolutejs/absolute": "0.19.0-beta.1115",
172
- "@absolutejs/rag-postgres": "0.0.11",
173
- "@absolutejs/rag-sqlite": "0.0.11",
174
- "@angular/core": "21.2.6",
175
- "@eslint/js": "^10.0.1",
176
- "@types/bun": "1.3.14",
177
- "@types/react": "19.2.0",
178
- "elysia": "1.4.29",
179
- "eslint": "^10.0.3",
180
- "eslint-plugin-absolute": "^0.2.6",
181
- "eslint-plugin-promise": "^7.2.1",
182
- "globals": "^17.4.0",
183
- "prettier": "^3.5.3",
184
- "react": "19.2.1",
185
- "react-dom": "19.2.1",
186
- "svelte": "5.55.0",
187
- "typescript": "5.9.3",
188
- "typescript-eslint": "^8.56.1",
189
- "vue": "3.5.27",
190
- "@absolutejs/sync": "2.11.0",
191
- "@absolutejs/ai": "0.0.47"
192
- },
193
- "scripts": {
194
- "build": "bun run scripts/build.ts && absolute-manifest emit",
195
- "config": "absolute config",
196
- "typecheck": "tsc --noEmit --project tsconfig.json",
197
- "lint": "eslint . --max-warnings 0",
198
- "format": "prettier --write .",
199
- "test": "bun test",
200
- "release": "bun run build && bun publish --access public"
201
- },
202
- "publishConfig": {
203
- "access": "public"
204
- },
205
- "typesVersions": {
206
- "*": {
207
- "adapter-kit": [
208
- "dist/src/adapter-kit/index.d.ts"
209
- ],
210
- "client": [
211
- "dist/src/client/index.d.ts"
212
- ],
213
- "client/ui": [
214
- "dist/src/client/ui.d.ts"
215
- ],
216
- "ui": [
217
- "dist/src/presentation/ui.d.ts"
218
- ],
219
- "quality": [
220
- "dist/src/quality/quality.d.ts"
221
- ],
222
- "react": [
223
- "dist/src/react/index.d.ts"
224
- ],
225
- "vue": [
226
- "dist/src/vue/index.d.ts"
227
- ],
228
- "svelte": [
229
- "dist/src/svelte/index.d.ts"
230
- ],
231
- "angular": [
232
- "dist/src/angular/index.d.ts"
233
- ],
234
- "manifest": [
235
- "dist/src/manifest.d.ts"
236
- ]
237
- }
238
- }
2
+ "name": "@absolutejs/rag",
3
+ "version": "0.8.0-beta.0",
4
+ "homepage": "https://github.com/absolutejs/rag",
5
+ "bugs": {
6
+ "url": "https://github.com/absolutejs/rag/issues"
7
+ },
8
+ "license": "BSL-1.1",
9
+ "description": "Standalone RAG ingestion, sync, retrieval, evaluation, clients, and framework adapters extracted from AbsoluteJS",
10
+ "type": "module",
11
+ "main": "./dist/index.js",
12
+ "types": "./dist/src/index.d.ts",
13
+ "files": [
14
+ "dist",
15
+ "README.md"
16
+ ],
17
+ "exports": {
18
+ ".": {
19
+ "import": "./dist/index.js",
20
+ "types": "./dist/src/index.d.ts"
21
+ },
22
+ "./adapter-kit": {
23
+ "import": "./dist/adapter-kit/index.js",
24
+ "types": "./dist/src/adapter-kit/index.d.ts"
25
+ },
26
+ "./client": {
27
+ "import": "./dist/client/index.js",
28
+ "types": "./dist/src/client/index.d.ts"
29
+ },
30
+ "./client/ui": {
31
+ "import": "./dist/client/ui.js",
32
+ "types": "./dist/src/client/ui.d.ts"
33
+ },
34
+ "./ui": {
35
+ "import": "./dist/presentation/ui.js",
36
+ "types": "./dist/src/presentation/ui.d.ts"
37
+ },
38
+ "./quality": {
39
+ "import": "./dist/quality/quality.js",
40
+ "types": "./dist/src/quality/quality.d.ts"
41
+ },
42
+ "./react": {
43
+ "import": "./dist/react/index.js",
44
+ "types": "./dist/src/react/index.d.ts"
45
+ },
46
+ "./vue": {
47
+ "import": "./dist/vue/index.js",
48
+ "types": "./dist/src/vue/index.d.ts"
49
+ },
50
+ "./svelte": {
51
+ "import": "./dist/svelte/index.js",
52
+ "types": "./dist/src/svelte/index.d.ts"
53
+ },
54
+ "./angular": {
55
+ "import": "./dist/angular/index.js",
56
+ "types": "./dist/src/angular/index.d.ts"
57
+ },
58
+ "./manifest": {
59
+ "import": "./dist/manifest.js",
60
+ "types": "./dist/src/manifest.d.ts"
61
+ },
62
+ "./manifest.json": "./dist/manifest.json"
63
+ },
64
+ "absolutejs": {
65
+ "manifestContract": 2
66
+ },
67
+ "dependencies": {
68
+ "@absolutejs/manifest": "^0.9.0",
69
+ "@sinclair/typebox": "^0.34.0"
70
+ },
71
+ "peerDependencies": {
72
+ "@angular/core": "^21.0.0",
73
+ "elysia": "^2.0.0-beta.6",
74
+ "react": "^19.2.0",
75
+ "svelte": "^5.35.2",
76
+ "vue": "^3.5.27",
77
+ "@absolutejs/sync": ">=2.14.0-beta.0 <3",
78
+ "@absolutejs/ai": ">=0.0.54-beta.0 <0.1"
79
+ },
80
+ "peerDependenciesMeta": {
81
+ "@angular/core": {
82
+ "optional": true
83
+ },
84
+ "react": {
85
+ "optional": true
86
+ },
87
+ "svelte": {
88
+ "optional": true
89
+ },
90
+ "vue": {
91
+ "optional": true
92
+ }
93
+ },
94
+ "devDependencies": {
95
+ "@absolutejs/absolute": "0.20.0-beta.0",
96
+ "@absolutejs/rag-postgres": "0.0.11",
97
+ "@absolutejs/rag-sqlite": "0.0.11",
98
+ "@angular/core": "21.2.6",
99
+ "@eslint/js": "^10.0.1",
100
+ "@types/bun": "1.3.14",
101
+ "@types/react": "19.2.0",
102
+ "elysia": "2.0.0-beta.6",
103
+ "eslint": "^10.0.3",
104
+ "eslint-plugin-absolute": "^0.2.6",
105
+ "eslint-plugin-promise": "^7.2.1",
106
+ "globals": "^17.4.0",
107
+ "prettier": "^3.5.3",
108
+ "react": "19.2.1",
109
+ "react-dom": "19.2.1",
110
+ "svelte": "5.55.0",
111
+ "typescript": "5.9.3",
112
+ "typescript-eslint": "^8.56.1",
113
+ "vue": "3.5.27",
114
+ "@absolutejs/sync": "2.11.0",
115
+ "@absolutejs/ai": "0.0.47"
116
+ },
117
+ "scripts": {
118
+ "build": "bun run scripts/build.ts && absolute-manifest emit",
119
+ "config": "absolute config",
120
+ "typecheck": "tsc --noEmit --project tsconfig.json",
121
+ "lint": "eslint . --max-warnings 0",
122
+ "format": "prettier --write .",
123
+ "test": "bun test",
124
+ "release": "bun run build && bun publish --access public"
125
+ },
126
+ "publishConfig": {
127
+ "access": "public"
128
+ },
129
+ "typesVersions": {
130
+ "*": {
131
+ "adapter-kit": [
132
+ "dist/src/adapter-kit/index.d.ts"
133
+ ],
134
+ "client": [
135
+ "dist/src/client/index.d.ts"
136
+ ],
137
+ "client/ui": [
138
+ "dist/src/client/ui.d.ts"
139
+ ],
140
+ "ui": [
141
+ "dist/src/presentation/ui.d.ts"
142
+ ],
143
+ "quality": [
144
+ "dist/src/quality/quality.d.ts"
145
+ ],
146
+ "react": [
147
+ "dist/src/react/index.d.ts"
148
+ ],
149
+ "vue": [
150
+ "dist/src/vue/index.d.ts"
151
+ ],
152
+ "svelte": [
153
+ "dist/src/svelte/index.d.ts"
154
+ ],
155
+ "angular": [
156
+ "dist/src/angular/index.d.ts"
157
+ ],
158
+ "manifest": [
159
+ "dist/src/manifest.d.ts"
160
+ ]
161
+ }
162
+ }
239
163
  }