teodor-new-chat-ui 4.3.404 → 4.3.405
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 +17 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "teodor-new-chat-ui",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.405",
|
|
4
4
|
"description": "React chat UI components with streaming support, tool calls, and modern design",
|
|
5
5
|
"main": "dist/index.umd.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -35,6 +35,21 @@
|
|
|
35
35
|
},
|
|
36
36
|
"private": false,
|
|
37
37
|
"type": "module",
|
|
38
|
+
"scripts": {
|
|
39
|
+
"dev": "vite",
|
|
40
|
+
"build": "npm run build:lib && npm run build:types",
|
|
41
|
+
"build:lib": "vite build --mode library",
|
|
42
|
+
"build:types": "tsc --project tsconfig.build.json",
|
|
43
|
+
"bump": "node scripts/bump-version.mjs",
|
|
44
|
+
"bump:minor": "node scripts/bump-version.mjs minor",
|
|
45
|
+
"bump:major": "node scripts/bump-version.mjs major",
|
|
46
|
+
"build:dev": "vite build --mode development",
|
|
47
|
+
"lint": "eslint .",
|
|
48
|
+
"preview": "vite preview",
|
|
49
|
+
"prepare": "npm run build",
|
|
50
|
+
"prepublishOnly": "npm run build",
|
|
51
|
+
"test": "vitest"
|
|
52
|
+
},
|
|
38
53
|
"peerDependencies": {
|
|
39
54
|
"react": ">=18.0.0",
|
|
40
55
|
"react-dom": ">=18.0.0",
|
|
@@ -130,18 +145,5 @@
|
|
|
130
145
|
"typescript-eslint": "^8.40.0",
|
|
131
146
|
"vite": "^5.4.19",
|
|
132
147
|
"vitest": "^2.1.4"
|
|
133
|
-
},
|
|
134
|
-
"scripts": {
|
|
135
|
-
"dev": "vite",
|
|
136
|
-
"build": "npm run build:lib && npm run build:types",
|
|
137
|
-
"build:lib": "vite build --mode library",
|
|
138
|
-
"build:types": "tsc --project tsconfig.build.json",
|
|
139
|
-
"bump": "node scripts/bump-version.mjs",
|
|
140
|
-
"bump:minor": "node scripts/bump-version.mjs minor",
|
|
141
|
-
"bump:major": "node scripts/bump-version.mjs major",
|
|
142
|
-
"build:dev": "vite build --mode development",
|
|
143
|
-
"lint": "eslint .",
|
|
144
|
-
"preview": "vite preview",
|
|
145
|
-
"test": "vitest"
|
|
146
148
|
}
|
|
147
|
-
}
|
|
149
|
+
}
|