@qoretechnologies/qorus-chat 0.1.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 ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "@qoretechnologies/qorus-chat",
3
+ "version": "0.1.0-beta.0",
4
+ "description": "Embeddable chat widget for Qorus AI endpoints. Drops onto a customer site as a floating bubble or inline mount, or imports as a React component (SDK) — backed by a Qorus ai-endpoint (model + RAG collections + guardrails + tools).",
5
+ "type": "module",
6
+ "files": [
7
+ "dist"
8
+ ],
9
+ "publishConfig": {
10
+ "access": "public"
11
+ },
12
+ "main": "./dist/qorus-chat.js",
13
+ "types": "./dist/index.d.ts",
14
+ "exports": {
15
+ ".": {
16
+ "types": "./dist/index.d.ts",
17
+ "import": "./dist/qorus-chat.js"
18
+ },
19
+ "./widget": "./dist/widget.js",
20
+ "./widget.js": "./dist/widget.js"
21
+ },
22
+ "sideEffects": [
23
+ "./dist/widget.js",
24
+ "./src/widget/**"
25
+ ],
26
+ "scripts": {
27
+ "build": "vite build && vite build --config vite.lib.config.ts",
28
+ "build:widget": "vite build",
29
+ "build:sdk": "vite build --config vite.lib.config.ts",
30
+ "dev": "vite",
31
+ "typecheck": "tsc --noEmit",
32
+ "lint": "eslint src --ext .ts,.tsx"
33
+ },
34
+ "peerDependencies": {
35
+ "@qoretechnologies/reqore": "^0.68.2",
36
+ "react": "^18.3.1",
37
+ "react-dom": "^18.3.1",
38
+ "styled-components": "^5.3.6"
39
+ },
40
+ "devDependencies": {
41
+ "@qoretechnologies/reqore": "^0.68.2",
42
+ "@types/react": "^18.3.12",
43
+ "@types/react-dom": "^18.3.1",
44
+ "@types/styled-components": "^5.1.34",
45
+ "@vitejs/plugin-react": "^6.0.2",
46
+ "react": "^18.3.1",
47
+ "react-dom": "^18.3.1",
48
+ "styled-components": "^5.3.11",
49
+ "typescript": "^5.6.3",
50
+ "vite": "^8.0.13",
51
+ "vite-plugin-dts": "^5.0.1"
52
+ },
53
+ "resolutions": {
54
+ "@types/react": "^18.3.12",
55
+ "@types/react-dom": "^18.3.1"
56
+ }
57
+ }