@vlprojects-chat/chat 0.5.14 → 0.5.15
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/index.js +1 -173
- package/package.json +74 -41
- package/dist/index.js.LICENSE.txt +0 -102
package/package.json
CHANGED
|
@@ -1,20 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vlprojects-chat/chat",
|
|
3
3
|
"author": "vlprojects",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.15",
|
|
5
5
|
"description": "Private playground for development of public library @vlprojects-chat/chat",
|
|
6
6
|
"license": "ISC",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
9
|
-
"module": "dist/index.
|
|
10
|
-
"files": [
|
|
9
|
+
"module": "dist/index.js",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
11
13
|
"repository": {
|
|
12
14
|
"type": "git",
|
|
13
15
|
"url": "git+ssh://git@github.com/VLprojects/chat.git"
|
|
14
16
|
},
|
|
15
17
|
"scripts": {
|
|
16
18
|
"start": "webpack serve --mode development --config webpack/webpack.config.ts",
|
|
17
|
-
"build": "rm -rf
|
|
19
|
+
"build": "rm -rf dist && webpack --mode production --config webpack/webpack.config.ts",
|
|
18
20
|
"lint:js": "eslint ./src --ext .ts,.tsx",
|
|
19
21
|
"client:build:prod:stats": "webpack --mode production --config webpack/webpack.config.ts --env test --profile --json > build/stats.json",
|
|
20
22
|
"webpack-bundle-analyzer": "webpack-bundle-analyzer build/stats.json"
|
|
@@ -31,44 +33,10 @@
|
|
|
31
33
|
"last 1 safari version"
|
|
32
34
|
]
|
|
33
35
|
},
|
|
34
|
-
"dependencies": {
|
|
35
|
-
"react": "^17.0.2",
|
|
36
|
-
"react-dom": "^17.0.2",
|
|
37
|
-
"@emotion/react": "^11.7.1",
|
|
38
|
-
"@emotion/styled": "^11.6.0",
|
|
39
|
-
"@mui/icons-material": "^5.3.0",
|
|
40
|
-
"@mui/lab": "5.0.0-alpha.65",
|
|
41
|
-
"@mui/material": "^5.3.0",
|
|
42
|
-
"@mui/styles": "^5.3.0",
|
|
43
|
-
"@mui/system": "^5.3.0",
|
|
44
|
-
"@sentry/react": "^6.17.7",
|
|
45
|
-
"@sentry/tracing": "^6.17.7",
|
|
46
|
-
"axios": "^0.25.0",
|
|
47
|
-
"centrifuge": "2.8.4",
|
|
48
|
-
"classnames": "^2.3.1",
|
|
49
|
-
"date-fns": "^2.28.0",
|
|
50
|
-
"final-form": "^4.20.6",
|
|
51
|
-
"final-form-arrays": "^3.0.2",
|
|
52
|
-
"js-cookie": "^2.2.1",
|
|
53
|
-
"linkify-react": "^3.0.4",
|
|
54
|
-
"linkifyjs": "^3.0.5",
|
|
55
|
-
"mobx": "^6.3.12",
|
|
56
|
-
"mobx-keystone": "^0.64.1",
|
|
57
|
-
"mobx-react": "^7.2.1",
|
|
58
|
-
"mobx-react-lite": "^3.2.3",
|
|
59
|
-
"mobx-utils": "^6.0.4",
|
|
60
|
-
"notistack": "^2.0.3",
|
|
61
|
-
"qs": "^6.10.3",
|
|
62
|
-
"react-error-boundary": "^3.1.4",
|
|
63
|
-
"react-final-form": "^6.5.7",
|
|
64
|
-
"react-final-form-arrays": "^3.1.3",
|
|
65
|
-
"react-intl": "^5.24.3",
|
|
66
|
-
"react-virtuoso": "^2.4.0",
|
|
67
|
-
"route-parser": "^0.0.5"
|
|
68
|
-
},
|
|
69
36
|
"lint-staged": {
|
|
70
37
|
"*.{js,jsx,ts,tsx,json,css,scss,md}": "prettier --write"
|
|
71
38
|
},
|
|
39
|
+
"dependencies": {},
|
|
72
40
|
"devDependencies": {
|
|
73
41
|
"@babel/core": "^7.16.7",
|
|
74
42
|
"@babel/plugin-proposal-decorators": "^7.16.7",
|
|
@@ -103,6 +71,8 @@
|
|
|
103
71
|
"fork-ts-checker-webpack-plugin": "^6.5.0",
|
|
104
72
|
"html-webpack-plugin": "^5.5.0",
|
|
105
73
|
"prettier": "^2.5.1",
|
|
74
|
+
"react": "^17.0.2",
|
|
75
|
+
"react-dom": "^17.0.2",
|
|
106
76
|
"react-refresh": "^0.11.0",
|
|
107
77
|
"source-map-loader": "^3.0.1",
|
|
108
78
|
"ts-node": "^10.4.0",
|
|
@@ -115,11 +85,74 @@
|
|
|
115
85
|
"webpack-bundle-analyzer": "^4.5.0",
|
|
116
86
|
"webpack-cli": "^4.9.2",
|
|
117
87
|
"webpack-dev-server": "^4.7.3",
|
|
118
|
-
"webpack-merge": "^5.8.0"
|
|
88
|
+
"webpack-merge": "^5.8.0",
|
|
89
|
+
"webpack-node-externals": "^3.0.0",
|
|
90
|
+
"@emotion/react": "^11.7.1",
|
|
91
|
+
"@emotion/styled": "^11.6.0",
|
|
92
|
+
"@mui/icons-material": "^5.3.0",
|
|
93
|
+
"@mui/lab": "5.0.0-alpha.65",
|
|
94
|
+
"@mui/material": "^5.3.0",
|
|
95
|
+
"@mui/styles": "^5.3.0",
|
|
96
|
+
"@mui/system": "^5.3.0",
|
|
97
|
+
"@sentry/react": "^6.17.7",
|
|
98
|
+
"@sentry/tracing": "^6.17.7",
|
|
99
|
+
"axios": "^0.25.0",
|
|
100
|
+
"centrifuge": "2.8.4",
|
|
101
|
+
"classnames": "^2.3.1",
|
|
102
|
+
"date-fns": "^2.28.0",
|
|
103
|
+
"final-form": "^4.20.6",
|
|
104
|
+
"final-form-arrays": "^3.0.2",
|
|
105
|
+
"js-cookie": "^2.2.1",
|
|
106
|
+
"linkify-react": "^3.0.4",
|
|
107
|
+
"linkifyjs": "^3.0.5",
|
|
108
|
+
"mobx": "^6.3.12",
|
|
109
|
+
"mobx-keystone": "^0.64.1",
|
|
110
|
+
"mobx-react": "^7.2.1",
|
|
111
|
+
"mobx-react-lite": "^3.2.3",
|
|
112
|
+
"mobx-utils": "^6.0.4",
|
|
113
|
+
"notistack": "^2.0.3",
|
|
114
|
+
"qs": "^6.10.3",
|
|
115
|
+
"react-error-boundary": "^3.1.4",
|
|
116
|
+
"react-final-form": "^6.5.7",
|
|
117
|
+
"react-final-form-arrays": "^3.1.3",
|
|
118
|
+
"react-intl": "^5.24.3",
|
|
119
|
+
"react-virtuoso": "^2.4.0",
|
|
120
|
+
"route-parser": "^0.0.5"
|
|
119
121
|
},
|
|
120
122
|
"peerDependencies": {
|
|
121
123
|
"react": "^17.0.2",
|
|
122
|
-
"react-dom": "^17.0.2"
|
|
124
|
+
"react-dom": "^17.0.2",
|
|
125
|
+
"@emotion/react": "^11.7.1",
|
|
126
|
+
"@emotion/styled": "^11.6.0",
|
|
127
|
+
"@mui/icons-material": "^5.3.0",
|
|
128
|
+
"@mui/lab": "5.0.0-alpha.65",
|
|
129
|
+
"@mui/material": "^5.3.0",
|
|
130
|
+
"@mui/styles": "^5.3.0",
|
|
131
|
+
"@mui/system": "^5.3.0",
|
|
132
|
+
"@sentry/react": "^6.17.7",
|
|
133
|
+
"@sentry/tracing": "^6.17.7",
|
|
134
|
+
"axios": "^0.25.0",
|
|
135
|
+
"centrifuge": "2.8.4",
|
|
136
|
+
"classnames": "^2.3.1",
|
|
137
|
+
"date-fns": "^2.28.0",
|
|
138
|
+
"final-form": "^4.20.6",
|
|
139
|
+
"final-form-arrays": "^3.0.2",
|
|
140
|
+
"js-cookie": "^2.2.1",
|
|
141
|
+
"linkify-react": "^3.0.4",
|
|
142
|
+
"linkifyjs": "^3.0.5",
|
|
143
|
+
"mobx": "^6.3.12",
|
|
144
|
+
"mobx-keystone": "^0.64.1",
|
|
145
|
+
"mobx-react": "^7.2.1",
|
|
146
|
+
"mobx-react-lite": "^3.2.3",
|
|
147
|
+
"mobx-utils": "^6.0.4",
|
|
148
|
+
"notistack": "^2.0.3",
|
|
149
|
+
"qs": "^6.10.3",
|
|
150
|
+
"react-error-boundary": "^3.1.4",
|
|
151
|
+
"react-final-form": "^6.5.7",
|
|
152
|
+
"react-final-form-arrays": "^3.1.3",
|
|
153
|
+
"react-intl": "^5.24.3",
|
|
154
|
+
"react-virtuoso": "^2.4.0",
|
|
155
|
+
"route-parser": "^0.0.5"
|
|
123
156
|
},
|
|
124
157
|
"bugs": {
|
|
125
158
|
"url": "https://github.com/VLprojects/chat/issues"
|
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
object-assign
|
|
3
|
-
(c) Sindre Sorhus
|
|
4
|
-
@license MIT
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
/*!
|
|
8
|
-
Copyright (c) 2018 Jed Watson.
|
|
9
|
-
Licensed under the MIT License (MIT), see
|
|
10
|
-
http://jedwatson.github.io/classnames
|
|
11
|
-
*/
|
|
12
|
-
|
|
13
|
-
/*!
|
|
14
|
-
* JavaScript Cookie v2.2.1
|
|
15
|
-
* https://github.com/js-cookie/js-cookie
|
|
16
|
-
*
|
|
17
|
-
* Copyright 2006, 2015 Klaus Hartl & Fagner Brack
|
|
18
|
-
* Released under the MIT license
|
|
19
|
-
*/
|
|
20
|
-
|
|
21
|
-
/*! *****************************************************************************
|
|
22
|
-
Copyright (c) Microsoft Corporation.
|
|
23
|
-
|
|
24
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
25
|
-
purpose with or without fee is hereby granted.
|
|
26
|
-
|
|
27
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
28
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
29
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
30
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
31
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
32
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
33
|
-
PERFORMANCE OF THIS SOFTWARE.
|
|
34
|
-
***************************************************************************** */
|
|
35
|
-
|
|
36
|
-
/**
|
|
37
|
-
* A better abstraction over CSS.
|
|
38
|
-
*
|
|
39
|
-
* @copyright Oleg Isonen (Slobodskoi) / Isonen 2014-present
|
|
40
|
-
* @website https://github.com/cssinjs/jss
|
|
41
|
-
* @license MIT
|
|
42
|
-
*/
|
|
43
|
-
|
|
44
|
-
/** @license MUI v5.3.0
|
|
45
|
-
*
|
|
46
|
-
* This source code is licensed under the MIT license found in the
|
|
47
|
-
* LICENSE file in the root directory of this source tree.
|
|
48
|
-
*/
|
|
49
|
-
|
|
50
|
-
/** @license React v0.20.2
|
|
51
|
-
* scheduler.production.min.js
|
|
52
|
-
*
|
|
53
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
54
|
-
*
|
|
55
|
-
* This source code is licensed under the MIT license found in the
|
|
56
|
-
* LICENSE file in the root directory of this source tree.
|
|
57
|
-
*/
|
|
58
|
-
|
|
59
|
-
/** @license React v16.13.1
|
|
60
|
-
* react-is.production.min.js
|
|
61
|
-
*
|
|
62
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
63
|
-
*
|
|
64
|
-
* This source code is licensed under the MIT license found in the
|
|
65
|
-
* LICENSE file in the root directory of this source tree.
|
|
66
|
-
*/
|
|
67
|
-
|
|
68
|
-
/** @license React v17.0.2
|
|
69
|
-
* react-dom.production.min.js
|
|
70
|
-
*
|
|
71
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
72
|
-
*
|
|
73
|
-
* This source code is licensed under the MIT license found in the
|
|
74
|
-
* LICENSE file in the root directory of this source tree.
|
|
75
|
-
*/
|
|
76
|
-
|
|
77
|
-
/** @license React v17.0.2
|
|
78
|
-
* react-is.production.min.js
|
|
79
|
-
*
|
|
80
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
81
|
-
*
|
|
82
|
-
* This source code is licensed under the MIT license found in the
|
|
83
|
-
* LICENSE file in the root directory of this source tree.
|
|
84
|
-
*/
|
|
85
|
-
|
|
86
|
-
/** @license React v17.0.2
|
|
87
|
-
* react-jsx-runtime.production.min.js
|
|
88
|
-
*
|
|
89
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
90
|
-
*
|
|
91
|
-
* This source code is licensed under the MIT license found in the
|
|
92
|
-
* LICENSE file in the root directory of this source tree.
|
|
93
|
-
*/
|
|
94
|
-
|
|
95
|
-
/** @license React v17.0.2
|
|
96
|
-
* react.production.min.js
|
|
97
|
-
*
|
|
98
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
99
|
-
*
|
|
100
|
-
* This source code is licensed under the MIT license found in the
|
|
101
|
-
* LICENSE file in the root directory of this source tree.
|
|
102
|
-
*/
|