@snapcall/stream-ui 1.24.1 → 1.25.0
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/stream-ui.esm.js +1130 -611
- package/dist/stream-ui.js +1127 -608
- package/package.json +12 -7
- package/dist/stream-ui.umd.js +0 -2121
- package/dist/streamerClient/index.js +0 -4
- package/dist/streamerClient/timer.ed477f04.js +0 -1
- package/dist/timer.ed477f04.js +0 -1
- package/dist/types.d.ts +0 -679
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@snapcall/stream-ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.25.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"source": "src/index.tsx",
|
|
6
6
|
"main": "dist/stream-ui.js",
|
|
@@ -24,6 +24,9 @@
|
|
|
24
24
|
"isLibrary": false,
|
|
25
25
|
"optimize": true,
|
|
26
26
|
"sourceMap": false
|
|
27
|
+
},
|
|
28
|
+
"html": {
|
|
29
|
+
"source": "html/index.html"
|
|
27
30
|
}
|
|
28
31
|
},
|
|
29
32
|
"publishConfig": {
|
|
@@ -33,11 +36,11 @@
|
|
|
33
36
|
"dist"
|
|
34
37
|
],
|
|
35
38
|
"scripts": {
|
|
36
|
-
"
|
|
37
|
-
"serve": "parcel serve --https
|
|
39
|
+
"dev": "npm run serve",
|
|
40
|
+
"serve": "APP_ENV=local parcel serve --https --host 0.0.0.0 --target html",
|
|
38
41
|
"build": "parcel build",
|
|
39
|
-
"build:npm": "parcel build --no-source-maps",
|
|
40
|
-
"build:s3": "parcel build --no-source-maps --target umd",
|
|
42
|
+
"build:npm": "parcel build --no-source-maps --target main --target module",
|
|
43
|
+
"build:s3": "parcel build --no-source-maps --target umd --target html",
|
|
41
44
|
"build:streamerClient": "parcel build --target streamerClient",
|
|
42
45
|
"typecheck": "tsc --noEmit",
|
|
43
46
|
"lint": "eslint src streamerClient --ext .ts,.tsx",
|
|
@@ -81,17 +84,19 @@
|
|
|
81
84
|
"eslint-config-react-app": "^7.0.1",
|
|
82
85
|
"parcel": "^2.12.0",
|
|
83
86
|
"postcss": "^8.4.38",
|
|
87
|
+
"posthtml": "^0.16.6",
|
|
88
|
+
"posthtml-expressions": "^1.11.3",
|
|
89
|
+
"posthtml-include": "^2.0.1",
|
|
84
90
|
"prettier": "2.7.1",
|
|
85
91
|
"process": "^0.11.10",
|
|
86
92
|
"tailwindcss": "^3.4.3",
|
|
87
93
|
"typescript": "^5.4.5"
|
|
88
94
|
},
|
|
89
95
|
"dependencies": {
|
|
90
|
-
"@hotjar/browser": "^1.0.6",
|
|
91
96
|
"@lottiefiles/react-lottie-player": "^3.5.3",
|
|
92
97
|
"@mediapipe/selfie_segmentation": "^0.1.1632777926",
|
|
93
98
|
"@sentry/browser": "^7.0.0",
|
|
94
|
-
"@snapcall/design-system": "^1.
|
|
99
|
+
"@snapcall/design-system": "^1.19.1",
|
|
95
100
|
"@types/youtube": "^0.0.50",
|
|
96
101
|
"bowser": "^2.11.0",
|
|
97
102
|
"classnames": "^2.3.2",
|