interview-widget 3.0.0 → 3.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/dist/widget.es.js +9566 -9157
- package/dist/widget.umd.js +15 -15
- package/package.json +8 -7
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "interview-widget",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.3",
|
|
5
5
|
"description": "Advanced React interview widget with STT, TTS, camera access, and ML-powered analysis",
|
|
6
6
|
"main": "dist/widget.umd.js",
|
|
7
7
|
"module": "dist/widget.es.js",
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"scripts": {
|
|
24
24
|
"dev": "vite",
|
|
25
25
|
"build": "tsc && vite build",
|
|
26
|
+
"build:dev": "tsc && vite build --mode development",
|
|
26
27
|
"build:cdn": "npm run build && npm run copy:examples",
|
|
27
28
|
"copy:examples": "mkdir -p dist/examples && cp examples/*.html dist/examples/",
|
|
28
29
|
"preview": "vite preview",
|
|
@@ -33,21 +34,21 @@
|
|
|
33
34
|
"publish:major": "npm version major && npm publish"
|
|
34
35
|
},
|
|
35
36
|
"peerDependencies": {
|
|
36
|
-
"react": "
|
|
37
|
-
"react-dom": "
|
|
37
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
38
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
38
39
|
},
|
|
39
40
|
"devDependencies": {
|
|
40
41
|
"@mediapipe/tasks-vision": "^0.10.22-rc.20250304",
|
|
41
42
|
"@types/node": "^22.0.0",
|
|
42
|
-
"@types/react": "
|
|
43
|
-
"@types/react-dom": "
|
|
43
|
+
"@types/react": "19.2.0",
|
|
44
|
+
"@types/react-dom": "19.2.0",
|
|
44
45
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
45
46
|
"@typescript-eslint/parser": "^8.0.0",
|
|
46
47
|
"@vitejs/plugin-react": "^4.3.0",
|
|
47
48
|
"autoprefixer": "^10.4.20",
|
|
48
49
|
"postcss": "^8.4.47",
|
|
49
|
-
"react": "
|
|
50
|
-
"react-dom": "
|
|
50
|
+
"react": "19.2.0",
|
|
51
|
+
"react-dom": "19.2.0",
|
|
51
52
|
"tailwindcss": "^3.4.0",
|
|
52
53
|
"typescript": "^5.6.0",
|
|
53
54
|
"vite": "^5.4.0",
|