@vlprojects-chat/chat 0.27.0 → 0.27.1
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.mjs +6554 -6616
- package/package.json +10 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vlprojects-chat/chat",
|
|
3
3
|
"author": "vlprojects",
|
|
4
|
-
"version": "0.27.
|
|
4
|
+
"version": "0.27.1",
|
|
5
5
|
"description": "vlprojects chat",
|
|
6
6
|
"license": "ISC",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -16,6 +16,8 @@
|
|
|
16
16
|
},
|
|
17
17
|
"scripts": {
|
|
18
18
|
"start": "vite",
|
|
19
|
+
"test": "vitest run",
|
|
20
|
+
"test:watch": "vitest",
|
|
19
21
|
"build": "tsc --noEmit && vite build --mode production"
|
|
20
22
|
},
|
|
21
23
|
"browserslist": {
|
|
@@ -84,6 +86,9 @@
|
|
|
84
86
|
"@semantic-release/github": "^12.0.2",
|
|
85
87
|
"@semantic-release/npm": "^13.1.2",
|
|
86
88
|
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
89
|
+
"@testing-library/jest-dom": "^5.17.0",
|
|
90
|
+
"@testing-library/react": "^12.1.5",
|
|
91
|
+
"@testing-library/user-event": "^13.5.0",
|
|
87
92
|
"@types/events": "^3.0.3",
|
|
88
93
|
"@types/flat": "^5.0.5",
|
|
89
94
|
"@types/js-cookie": "^3.0.6",
|
|
@@ -99,6 +104,7 @@
|
|
|
99
104
|
"@typescript-eslint/eslint-plugin": "^8.12.2",
|
|
100
105
|
"@typescript-eslint/parser": "^8.12.2",
|
|
101
106
|
"@vitejs/plugin-react": "^4.3.3",
|
|
107
|
+
"@vitest/coverage-v8": "^1.6.1",
|
|
102
108
|
"autoprefixer": "10.4.20",
|
|
103
109
|
"babel-loader": "^9.2.1",
|
|
104
110
|
"cross-env": "^7.0.3",
|
|
@@ -109,6 +115,7 @@
|
|
|
109
115
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
110
116
|
"eslint-plugin-react": "^7.37.2",
|
|
111
117
|
"eslint-plugin-react-hooks": "^5.0.0",
|
|
118
|
+
"jsdom": "^28.1.0",
|
|
112
119
|
"prettier": "^3.3.3",
|
|
113
120
|
"react": "^17.0.2",
|
|
114
121
|
"react-dom": "^17.0.2",
|
|
@@ -121,7 +128,8 @@
|
|
|
121
128
|
"url-loader": "^4.1.1",
|
|
122
129
|
"vite": "^5.4.10",
|
|
123
130
|
"vite-plugin-node-polyfills": "^0.22.0",
|
|
124
|
-
"vite-tsconfig-paths": "^5.0.1"
|
|
131
|
+
"vite-tsconfig-paths": "^5.0.1",
|
|
132
|
+
"vitest": "^1.6.1"
|
|
125
133
|
},
|
|
126
134
|
"peerDependencies": {
|
|
127
135
|
"mobx-event-bus2": "^2.0.0",
|