@getsupertab/supertab-js 3.4.3 → 3.6.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/pkg/prod/browser-ponyfill-DBYK0yUF.js +340 -0
- package/dist/pkg/prod/sdk-BfgNasCt.js +64255 -0
- package/dist/pkg/prod/sdk.js +1 -1
- package/dist/pkg/prod/sentry-x1V_uTsb.js +12528 -0
- package/package.json +11 -17
- package/dist/pkg/prod/sdk-BkB1ahBa.js +0 -33666
- package/dist/pkg/prod/sentry-D9KGWpW4.js +0 -42
package/package.json
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"engines": {
|
|
23
23
|
"node": ">=22.13.1"
|
|
24
24
|
},
|
|
25
|
-
"version": "3.
|
|
25
|
+
"version": "3.6.0",
|
|
26
26
|
"type": "module",
|
|
27
27
|
"scripts": {
|
|
28
28
|
"dev": "vite --config .vite/vite.dev.config.ts",
|
|
@@ -55,25 +55,12 @@
|
|
|
55
55
|
"generate-api-schemas": "bin/generate-api-schemas",
|
|
56
56
|
"prepublishOnly": "npm run build:pkg:prod"
|
|
57
57
|
},
|
|
58
|
-
"dependencies": {
|
|
58
|
+
"dependencies": {},
|
|
59
|
+
"devDependencies": {
|
|
59
60
|
"@emotion/cache": "^11.14.0",
|
|
60
61
|
"@emotion/react": "^11.14.0",
|
|
61
62
|
"@emotion/styled": "^11.14.0",
|
|
62
63
|
"@emotion/utils": "^1.4.2",
|
|
63
|
-
"@sentry/react": "^9.12.0",
|
|
64
|
-
"@xstate/react": "^5.0.2",
|
|
65
|
-
"focus-trap-react": "^11.0.3",
|
|
66
|
-
"i18next": "^24.2.3",
|
|
67
|
-
"i18next-browser-languagedetector": "^8.0.5",
|
|
68
|
-
"i18next-http-backend": "^3.0.2",
|
|
69
|
-
"react": "^18.3.1",
|
|
70
|
-
"react-dom": "^18.3.1",
|
|
71
|
-
"react-i18next": "^15.5.1",
|
|
72
|
-
"ts-case-convert": "^2.1.0",
|
|
73
|
-
"xstate": "^5.19.1",
|
|
74
|
-
"zod": "^3.24.4"
|
|
75
|
-
},
|
|
76
|
-
"devDependencies": {
|
|
77
64
|
"@getsupertab/eslint-config": "^1.1.1",
|
|
78
65
|
"@getsupertab/netlify-plugin-update-client-apps": "^1.1.3",
|
|
79
66
|
"@getsupertab/price-utils": "^1.1.0",
|
|
@@ -84,6 +71,7 @@
|
|
|
84
71
|
"@semantic-release/git": "^10.0.1",
|
|
85
72
|
"@semantic-release/npm": "^12.0.1",
|
|
86
73
|
"@semantic-release/release-notes-generator": "^14.0.1",
|
|
74
|
+
"@sentry/react": "^9.12.0",
|
|
87
75
|
"@storybook/addon-essentials": "^8.6.12",
|
|
88
76
|
"@storybook/addon-interactions": "^8.6.12",
|
|
89
77
|
"@storybook/addon-links": "^8.6.12",
|
|
@@ -99,6 +87,7 @@
|
|
|
99
87
|
"autoprefixer": "^10.4.21",
|
|
100
88
|
"dotenv": "^16.5.0",
|
|
101
89
|
"eslint": "^8.57.0",
|
|
90
|
+
"focus-trap-react": "^11.0.3",
|
|
102
91
|
"happy-dom": "^17.4.6",
|
|
103
92
|
"husky": "^9.1.7",
|
|
104
93
|
"i18next": "^25.0.2",
|
|
@@ -107,16 +96,21 @@
|
|
|
107
96
|
"lint-staged": "^15.5.2",
|
|
108
97
|
"msw-storybook-addon": "^2.0.3",
|
|
109
98
|
"postcss": "^8.5.3",
|
|
99
|
+
"react": "^18.3.1",
|
|
100
|
+
"react-dom": "^18.3.1",
|
|
110
101
|
"react-i18next": "^15.5.1",
|
|
111
102
|
"semantic-release": "^24.2.3",
|
|
112
103
|
"storybook": "^8.6.7",
|
|
113
104
|
"tailwindcss": "^3.4.17",
|
|
114
105
|
"testcafe": "^3.7.2",
|
|
106
|
+
"ts-case-convert": "^2.1.0",
|
|
115
107
|
"typed-openapi": "^0.10.1",
|
|
116
108
|
"typescript": "^5.8.3",
|
|
117
109
|
"vite": "^6.3.5",
|
|
118
110
|
"vite-plugin-dts": "^4.5.3",
|
|
119
111
|
"vite-tsconfig-paths": "^5.1.4",
|
|
120
|
-
"vitest": "^3.0.5"
|
|
112
|
+
"vitest": "^3.0.5",
|
|
113
|
+
"xstate": "^5.19.1",
|
|
114
|
+
"zod": "^3.24.4"
|
|
121
115
|
}
|
|
122
116
|
}
|