bibot 1.0.15 → 1.0.20
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/dist/component/Avatar.d.ts +9 -0
- package/dist/component/Icons.d.ts +6 -0
- package/dist/component/SendMessageIcon.d.ts +2 -0
- package/dist/hooks/useOnlineStatus.d.ts +2 -0
- package/dist/index.css +18 -18
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3451 -67
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +3449 -65
- package/dist/index.modern.js.map +1 -1
- package/package.json +3 -7
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "bibot",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.20",
|
4
4
|
"description": "Made with create-react-library",
|
5
5
|
"author": "chrisdjin",
|
6
6
|
"license": "ISC",
|
@@ -12,7 +12,7 @@
|
|
12
12
|
"node": ">=10"
|
13
13
|
},
|
14
14
|
"scripts": {
|
15
|
-
"build": "microbundle-crl --no-compress --format modern,cjs",
|
15
|
+
"build": "microbundle-crl --no-compress --format modern,cjs --external react,react-dom",
|
16
16
|
"start": "microbundle-crl watch --no-compress --format modern,cjs",
|
17
17
|
"prepare": "run-s build",
|
18
18
|
"test": "run-s test:unit test:lint test:build",
|
@@ -67,15 +67,11 @@
|
|
67
67
|
"dependencies": {
|
68
68
|
"@emotion/react": "^11.11.4",
|
69
69
|
"@emotion/styled": "^11.11.5",
|
70
|
-
"@mantine/core": "^7.6.1",
|
71
|
-
"@mantine/hooks": "^7.6.1",
|
72
70
|
"@mantine/notifications": "^7.6.1",
|
73
|
-
"@mui/icons-material": "^5.14.13",
|
74
|
-
"@mui/material": "^5.15.9",
|
75
|
-
"antd": "^5.9.4",
|
76
71
|
"axios": "^1.6.7",
|
77
72
|
"postcss": "^8.4.38",
|
78
73
|
"postcss-loader": "^8.1.1",
|
74
|
+
"react-is": "^18.3.1",
|
79
75
|
"react-scripts": "^5.0.1"
|
80
76
|
}
|
81
77
|
}
|