@absolutejs/rag 0.0.28 → 0.0.29

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,2 @@
1
+ import type { CreateRAGCollectionOptions, RAGCollection } from "../types";
2
+ export declare const manifest: import("@absolutejs/manifest").PackageManifest<CreateRAGCollectionOptions, RAGCollection>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@absolutejs/rag",
3
- "version": "0.0.28",
3
+ "version": "0.0.29",
4
4
  "homepage": "https://github.com/absolutejs/rag",
5
5
  "bugs": {
6
6
  "url": "https://github.com/absolutejs/rag/issues"
@@ -54,12 +54,22 @@
54
54
  "./angular": {
55
55
  "import": "./dist/angular/index.js",
56
56
  "types": "./dist/src/angular/index.d.ts"
57
- }
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": 1
58
66
  },
59
67
  "dependencies": {
60
68
  "@absolutejs/ai": "^0.0.19",
61
69
  "@absolutejs/linked-providers": "0.0.2",
62
- "@absolutejs/sync": "^1.8.1"
70
+ "@absolutejs/manifest": "^0.1.0",
71
+ "@absolutejs/sync": "^1.8.1",
72
+ "@sinclair/typebox": "^0.34.0"
63
73
  },
64
74
  "peerDependencies": {
65
75
  "@angular/core": "^21.0.0",
@@ -104,7 +114,7 @@
104
114
  "vue": "3.5.27"
105
115
  },
106
116
  "scripts": {
107
- "build": "bun run scripts/build.ts",
117
+ "build": "bun run scripts/build.ts && absolute-manifest emit",
108
118
  "config": "absolute config",
109
119
  "typecheck": "tsc --noEmit --project tsconfig.json",
110
120
  "lint": "eslint . --max-warnings 0",
@@ -143,6 +153,9 @@
143
153
  ],
144
154
  "angular": [
145
155
  "dist/src/angular/index.d.ts"
156
+ ],
157
+ "manifest": [
158
+ "dist/src/manifest.d.ts"
146
159
  ]
147
160
  }
148
161
  }