@retrivora-ai/rag-engine 1.8.3 → 1.8.4

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": "@retrivora-ai/rag-engine",
3
- "version": "1.8.3",
3
+ "version": "1.8.4",
4
4
  "description": "Retrivora AI is a plug-and-play AI engine for RAG chat experiences — generic vector DB + LLM provider, embeddable or standalone.",
5
5
  "author": "Abhinav Alkuchi",
6
6
  "license": "MIT",
@@ -36,6 +36,7 @@
36
36
  "require": "./dist/index.js",
37
37
  "import": "./dist/index.mjs"
38
38
  },
39
+ "./style.css": "./dist/index.css",
39
40
  "./handlers": {
40
41
  "types": "./dist/handlers/index.d.ts",
41
42
  "require": "./dist/handlers/index.js",
@@ -73,7 +74,7 @@
73
74
  "scripts": {
74
75
  "dev": "next dev",
75
76
  "build": "next build",
76
- "build:pkg": "tsup src/index.ts src/handlers/index.ts src/server.ts --format cjs,esm --dts --clean --no-splitting --tsconfig tsconfig.build.json --external react,react-dom,next,mongodb,pg,openai,@anthropic-ai/sdk,@pinecone-database/pinecone,axios,lucide-react,mammoth,pdf-parse,react-markdown,remark-gfm,next-themes,langchain,@langchain/core,@langchain/openai,llamaindex",
77
+ "build:pkg": "tsup src/index.ts src/handlers/index.ts src/server.ts --format cjs,esm --dts --clean --no-splitting --tsconfig tsconfig.build.json --external react,react-dom,next,mongodb,pg,openai,@anthropic-ai/sdk,@pinecone-database/pinecone,axios,lucide-react,mammoth,pdf-parse,react-markdown,remark-gfm,next-themes,langchain,@langchain/core,@langchain/openai,llamaindex && npx @tailwindcss/cli -i src/tailwind.css -o dist/index.css",
77
78
  "start": "next start",
78
79
  "lint": "eslint",
79
80
  "prepublishOnly": "npm run build:pkg"
@@ -112,6 +113,7 @@
112
113
  "pg": "^8.20.0"
113
114
  },
114
115
  "devDependencies": {
116
+ "@tailwindcss/cli": "^4",
115
117
  "@tailwindcss/postcss": "^4",
116
118
  "@types/estree": "^1.0.9",
117
119
  "@types/node": "^20",
@@ -0,0 +1,2 @@
1
+ @import "tailwindcss";
2
+ @source "./**/*.{ts,tsx,js,jsx}";