@vlprojects-chat/chat 0.8.14 → 0.9.2
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/imp.png +0 -0
- package/dist/index.mjs +57340 -0
- package/dist/robots.txt +3 -0
- package/package.json +10 -21
- package/dist/index.html +0 -1
- package/dist/index.js +0 -1
package/dist/robots.txt
ADDED
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vlprojects-chat/chat",
|
|
3
3
|
"author": "vlprojects",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.9.2",
|
|
5
5
|
"description": "VLprojects chat",
|
|
6
6
|
"license": "ISC",
|
|
7
|
-
"main": "dist/index.js",
|
|
8
7
|
"types": "dist/index.d.ts",
|
|
9
|
-
"
|
|
8
|
+
"main": "./dist/index.mjs",
|
|
9
|
+
"module": "./dist/index.mjs",
|
|
10
10
|
"files": [
|
|
11
11
|
"dist"
|
|
12
12
|
],
|
|
@@ -15,12 +15,9 @@
|
|
|
15
15
|
"url": "git+ssh://git@github.com/VLprojects/chat.git"
|
|
16
16
|
},
|
|
17
17
|
"scripts": {
|
|
18
|
-
"start": "
|
|
19
|
-
"build": "rm -rf dist && webpack --mode production --config webpack/webpack.config.ts --env target=production",
|
|
20
|
-
"build:stage": "rm -rf dist && webpack --mode production --config webpack/webpack.config.ts --env target=stage",
|
|
18
|
+
"start": "vite",
|
|
21
19
|
"lint:js": "eslint ./src --ext .ts,.tsx",
|
|
22
|
-
"
|
|
23
|
-
"webpack-bundle-analyzer": "webpack-bundle-analyzer build/stats.json"
|
|
20
|
+
"build": "tsc --noEmit && vite build --mode production"
|
|
24
21
|
},
|
|
25
22
|
"browserslist": {
|
|
26
23
|
"production": [
|
|
@@ -85,9 +82,7 @@
|
|
|
85
82
|
"@babel/preset-react": "^7.16.7",
|
|
86
83
|
"@babel/preset-typescript": "^7.16.7",
|
|
87
84
|
"@babel/runtime": "^7.16.7",
|
|
88
|
-
"@
|
|
89
|
-
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
|
|
90
|
-
"@types/dotenv-webpack": "^7.0.3",
|
|
85
|
+
"@types/events": "^3.0.3",
|
|
91
86
|
"@types/flat": "^5.0.2",
|
|
92
87
|
"@types/js-cookie": "^2.2.7",
|
|
93
88
|
"@types/node": "^17.0.10",
|
|
@@ -101,36 +96,30 @@
|
|
|
101
96
|
"@types/uuid": "^9.0.8",
|
|
102
97
|
"@typescript-eslint/eslint-plugin": "^5.10.0",
|
|
103
98
|
"@typescript-eslint/parser": "^5.10.0",
|
|
99
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
104
100
|
"autoprefixer": "9.0.0",
|
|
105
101
|
"babel-loader": "^8.2.3",
|
|
106
102
|
"cross-env": "^7.0.3",
|
|
107
103
|
"dotenv": "^14.2.0",
|
|
108
|
-
"dotenv-webpack": "^7.0.3",
|
|
109
104
|
"eslint-config-airbnb-typescript": "^16.1.0",
|
|
110
105
|
"eslint-config-prettier": "^8.3.0",
|
|
111
106
|
"eslint-plugin-import": "^2.25.4",
|
|
112
107
|
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
113
108
|
"eslint-plugin-react": "^7.28.0",
|
|
114
109
|
"eslint-plugin-react-hooks": "^4.3.0",
|
|
115
|
-
"fork-ts-checker-webpack-plugin": "^6.5.0",
|
|
116
|
-
"html-webpack-plugin": "^5.5.0",
|
|
117
110
|
"prettier": "^2.5.1",
|
|
118
111
|
"react": "^17.0.2",
|
|
119
112
|
"react-dom": "^17.0.2",
|
|
120
113
|
"react-refresh": "^0.11.0",
|
|
121
114
|
"source-map-loader": "^3.0.1",
|
|
122
115
|
"ts-node": "^10.4.0",
|
|
123
|
-
"tsconfig-paths-webpack-plugin": "^3.5.2",
|
|
124
116
|
"tslib": "^2.3.1",
|
|
125
117
|
"type-fest": "^2.10.0",
|
|
126
118
|
"typescript": "^4.5.4",
|
|
127
119
|
"url-loader": "^4.1.1",
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
"
|
|
131
|
-
"webpack-dev-server": "^4.7.3",
|
|
132
|
-
"webpack-merge": "^5.8.0",
|
|
133
|
-
"webpack-node-externals": "^3.0.0"
|
|
120
|
+
"vite": "^5.1.5",
|
|
121
|
+
"vite-plugin-node-polyfills": "^0.21.0",
|
|
122
|
+
"vite-tsconfig-paths": "^4.3.1"
|
|
134
123
|
},
|
|
135
124
|
"peerDependencies": {
|
|
136
125
|
"@emotion/react": "^11.x.x",
|
package/dist/index.html
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="imp.png"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><title>Chat</title><script defer="defer" src="index.js"></script></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="livedigital-chat" style="height: 800px; width: 360px; margin: auto"></div></body></html>
|