interview-widget 2.0.0 → 2.0.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/README.md +364 -364
- package/dist/services/api/endpoints.d.ts +1 -0
- package/dist/services/api/interview-api.d.ts +4 -0
- package/dist/widget.es.js +575 -560
- package/dist/widget.umd.js +7 -7
- package/package.json +66 -66
package/package.json
CHANGED
|
@@ -1,66 +1,66 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "interview-widget",
|
|
3
|
-
"type": "module",
|
|
4
|
-
"version": "2.0.
|
|
5
|
-
"description": "Advanced React interview widget with STT, TTS, camera access, and ML-powered analysis",
|
|
6
|
-
"main": "dist/widget.umd.js",
|
|
7
|
-
"module": "dist/widget.es.js",
|
|
8
|
-
"types": "dist/index.d.ts",
|
|
9
|
-
"unpkg": "dist/widget.umd.js",
|
|
10
|
-
"jsdelivr": "dist/widget.umd.js",
|
|
11
|
-
"style": "dist/widget.css",
|
|
12
|
-
"exports": {
|
|
13
|
-
".": {
|
|
14
|
-
"types": "./dist/index.d.ts",
|
|
15
|
-
"import": "./dist/widget.es.js",
|
|
16
|
-
"require": "./dist/widget.umd.js"
|
|
17
|
-
},
|
|
18
|
-
"./style.css": "./dist/widget.css"
|
|
19
|
-
},
|
|
20
|
-
"files": [
|
|
21
|
-
"dist"
|
|
22
|
-
],
|
|
23
|
-
"scripts": {
|
|
24
|
-
"dev": "vite",
|
|
25
|
-
"build": "tsc && vite build",
|
|
26
|
-
"build:cdn": "npm run build && npm run copy:examples",
|
|
27
|
-
"copy:examples": "mkdir -p dist/examples && cp examples/*.html dist/examples/",
|
|
28
|
-
"preview": "vite preview",
|
|
29
|
-
"type-check": "tsc --noEmit",
|
|
30
|
-
"prepublishOnly": "npm run build",
|
|
31
|
-
"publish:patch": "npm version patch && npm publish",
|
|
32
|
-
"publish:minor": "npm version minor && npm publish",
|
|
33
|
-
"publish:major": "npm version major && npm publish"
|
|
34
|
-
},
|
|
35
|
-
"peerDependencies": {
|
|
36
|
-
"react": ">=18.0.0",
|
|
37
|
-
"react-dom": ">=18.0.0"
|
|
38
|
-
},
|
|
39
|
-
"devDependencies": {
|
|
40
|
-
"@mediapipe/tasks-vision": "^0.10.22-rc.20250304",
|
|
41
|
-
"@types/node": "^22.0.0",
|
|
42
|
-
"@types/react": "npm:types-react@^19.0.0-rc.1",
|
|
43
|
-
"@types/react-dom": "npm:types-react-dom@^19.0.0-rc.1",
|
|
44
|
-
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
45
|
-
"@typescript-eslint/parser": "^8.0.0",
|
|
46
|
-
"@vitejs/plugin-react": "^4.3.0",
|
|
47
|
-
"autoprefixer": "^10.4.20",
|
|
48
|
-
"postcss": "^8.4.47",
|
|
49
|
-
"react": "^19.0.0-rc.1",
|
|
50
|
-
"react-dom": "^19.0.0-rc.1",
|
|
51
|
-
"tailwindcss": "^3.4.0",
|
|
52
|
-
"typescript": "^5.6.0",
|
|
53
|
-
"vite": "^5.4.0",
|
|
54
|
-
"vite-plugin-dts": "^4.0.0"
|
|
55
|
-
},
|
|
56
|
-
"keywords": [
|
|
57
|
-
"react",
|
|
58
|
-
"interview",
|
|
59
|
-
"widget",
|
|
60
|
-
"cdn",
|
|
61
|
-
"embed",
|
|
62
|
-
"interview-widget"
|
|
63
|
-
],
|
|
64
|
-
"author": "Jaber Hossain Pranto",
|
|
65
|
-
"license": "MIT"
|
|
66
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "interview-widget",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "2.0.1",
|
|
5
|
+
"description": "Advanced React interview widget with STT, TTS, camera access, and ML-powered analysis",
|
|
6
|
+
"main": "dist/widget.umd.js",
|
|
7
|
+
"module": "dist/widget.es.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"unpkg": "dist/widget.umd.js",
|
|
10
|
+
"jsdelivr": "dist/widget.umd.js",
|
|
11
|
+
"style": "dist/widget.css",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/widget.es.js",
|
|
16
|
+
"require": "./dist/widget.umd.js"
|
|
17
|
+
},
|
|
18
|
+
"./style.css": "./dist/widget.css"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"dev": "vite",
|
|
25
|
+
"build": "tsc && vite build",
|
|
26
|
+
"build:cdn": "npm run build && npm run copy:examples",
|
|
27
|
+
"copy:examples": "mkdir -p dist/examples && cp examples/*.html dist/examples/",
|
|
28
|
+
"preview": "vite preview",
|
|
29
|
+
"type-check": "tsc --noEmit",
|
|
30
|
+
"prepublishOnly": "npm run build",
|
|
31
|
+
"publish:patch": "npm version patch && npm publish",
|
|
32
|
+
"publish:minor": "npm version minor && npm publish",
|
|
33
|
+
"publish:major": "npm version major && npm publish"
|
|
34
|
+
},
|
|
35
|
+
"peerDependencies": {
|
|
36
|
+
"react": ">=18.0.0",
|
|
37
|
+
"react-dom": ">=18.0.0"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@mediapipe/tasks-vision": "^0.10.22-rc.20250304",
|
|
41
|
+
"@types/node": "^22.0.0",
|
|
42
|
+
"@types/react": "npm:types-react@^19.0.0-rc.1",
|
|
43
|
+
"@types/react-dom": "npm:types-react-dom@^19.0.0-rc.1",
|
|
44
|
+
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
45
|
+
"@typescript-eslint/parser": "^8.0.0",
|
|
46
|
+
"@vitejs/plugin-react": "^4.3.0",
|
|
47
|
+
"autoprefixer": "^10.4.20",
|
|
48
|
+
"postcss": "^8.4.47",
|
|
49
|
+
"react": "^19.0.0-rc.1",
|
|
50
|
+
"react-dom": "^19.0.0-rc.1",
|
|
51
|
+
"tailwindcss": "^3.4.0",
|
|
52
|
+
"typescript": "^5.6.0",
|
|
53
|
+
"vite": "^5.4.0",
|
|
54
|
+
"vite-plugin-dts": "^4.0.0"
|
|
55
|
+
},
|
|
56
|
+
"keywords": [
|
|
57
|
+
"react",
|
|
58
|
+
"interview",
|
|
59
|
+
"widget",
|
|
60
|
+
"cdn",
|
|
61
|
+
"embed",
|
|
62
|
+
"interview-widget"
|
|
63
|
+
],
|
|
64
|
+
"author": "Jaber Hossain Pranto",
|
|
65
|
+
"license": "MIT"
|
|
66
|
+
}
|