acecoderz-chat-ui 1.0.0 → 1.0.3
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 +5 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "acecoderz-chat-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "A framework-agnostic, fully customizable chat UI package that works with React, Solid, Vanilla JS, and any other framework",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"chat",
|
|
@@ -16,15 +16,6 @@
|
|
|
16
16
|
],
|
|
17
17
|
"author": "",
|
|
18
18
|
"license": "MIT",
|
|
19
|
-
"repository": {
|
|
20
|
-
"type": "git",
|
|
21
|
-
"url": "git@bitbucket.org:sudhir_pratap_/chatbot.git",
|
|
22
|
-
"directory": "packages/chat-ui"
|
|
23
|
-
},
|
|
24
|
-
"bugs": {
|
|
25
|
-
"url": "https://bitbucket.org/sudhir_pratap_/chatbot/issues"
|
|
26
|
-
},
|
|
27
|
-
"homepage": "https://bitbucket.org/sudhir_pratap_/chatbot#readme",
|
|
28
19
|
"type": "module",
|
|
29
20
|
"main": "./dist/index.js",
|
|
30
21
|
"types": "./dist/index.d.ts",
|
|
@@ -69,7 +60,10 @@
|
|
|
69
60
|
"docs:storybook": "storybook dev -p 6006",
|
|
70
61
|
"docs:storybook:build": "storybook build",
|
|
71
62
|
"docs:typedoc": "typedoc",
|
|
72
|
-
"docs:build": "pnpm docs:typedoc && pnpm docs:storybook:build"
|
|
63
|
+
"docs:build": "pnpm docs:typedoc && pnpm docs:storybook:build",
|
|
64
|
+
"version:patch": "node version-bump.js patch",
|
|
65
|
+
"version:minor": "node version-bump.js minor",
|
|
66
|
+
"version:major": "node version-bump.js major"
|
|
73
67
|
},
|
|
74
68
|
"devDependencies": {
|
|
75
69
|
"@storybook/addon-essentials": "^8.6.15",
|