flare-chat-core 0.2.7 → 0.2.8

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.
Files changed (2) hide show
  1. package/dist/index.js +3699 -4195
  2. package/package.json +10 -15
package/package.json CHANGED
@@ -1,16 +1,14 @@
1
1
  {
2
2
  "name": "flare-chat-core",
3
3
  "private": false,
4
- "version": "0.2.7",
4
+ "version": "0.2.8",
5
5
  "type": "module",
6
6
  "scripts": {
7
- "dev": "vite --mode development",
7
+ "dev": "vite --config config/vite.dev.config.js --mode development",
8
8
  "dev:real": "VITE_FLARE_CHAT_DEV_DEFAULT_BACKEND=real npm run dev",
9
- "build": "npm run build:lib",
10
- "build:lib": "vite build --config vite.lib.config.js --mode production",
11
- "build:app": "vite build --mode production",
12
- "prepack": "npm run build:lib",
13
- "preview": "vite preview --mode production --port 9001"
9
+ "build": "npm run build:prod",
10
+ "build:prod": "vite build --config config/vite.prod.config.js --mode production",
11
+ "prepack": "npm run build:prod"
14
12
  },
15
13
  "main": "./dist/index.js",
16
14
  "module": "./dist/index.js",
@@ -22,20 +20,17 @@
22
20
  "./index.js": "./dist/index.js"
23
21
  },
24
22
  "peerDependencies": {
25
- "@ant-design/icons": "^6.0.0",
26
- "antd": "^6.0.0",
27
23
  "react": "^18.0.0"
28
24
  },
29
- "dependencies": {
30
- "flare-chat-ui": "^0.2.6",
31
- "flare-generative-ui": "^0.2.2"
32
- },
33
25
  "devDependencies": {
34
- "@ant-design/icons": "^6.0.0",
35
26
  "@vitejs/plugin-react": "^5.1.1",
36
- "antd": "^6.2.2",
37
27
  "react": "^18.3.1",
38
28
  "react-dom": "^18.3.1",
39
29
  "vite": "^7.2.4"
30
+ },
31
+ "dependencies": {
32
+ "@ant-design/icons": "^6.0.0",
33
+ "antd": "^6.0.0",
34
+ "flare-chat-ui": "^0.3.0"
40
35
  }
41
36
  }