@stytch/vanilla-js 4.4.0 → 4.4.2
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/CHANGELOG.md +15 -0
- package/dist/b2b/index.d.ts +18 -18
- package/dist/b2b/index.esm.d.ts +18 -18
- package/dist/b2b/index.esm.js +2228 -2210
- package/dist/b2b/index.headless.d.ts +18 -18
- package/dist/b2b/index.headless.esm.d.ts +18 -18
- package/dist/b2b/index.headless.esm.js +136 -105
- package/dist/b2b/index.headless.js +133 -102
- package/dist/b2b/index.js +2222 -2204
- package/dist/index.esm.js +3359 -3497
- package/dist/index.headless.esm.js +10 -6
- package/dist/index.headless.js +94 -90
- package/dist/index.js +2040 -2178
- package/package.json +27 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stytch/vanilla-js",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.2",
|
|
4
4
|
"description": "Stytch's official Javascript Client Library",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.esm.js",
|
|
@@ -16,7 +16,9 @@
|
|
|
16
16
|
"compile": "rollup -c",
|
|
17
17
|
"dev": "rollup -c -w",
|
|
18
18
|
"dev:esbuild": "node esbuild.mjs",
|
|
19
|
-
"test": "jest"
|
|
19
|
+
"test": "jest",
|
|
20
|
+
"storybook": "storybook dev -p 6006 --ci",
|
|
21
|
+
"build-storybook": "storybook build"
|
|
20
22
|
},
|
|
21
23
|
"license": "MIT",
|
|
22
24
|
"author": "Stytch",
|
|
@@ -29,16 +31,19 @@
|
|
|
29
31
|
"jwt",
|
|
30
32
|
"user"
|
|
31
33
|
],
|
|
34
|
+
"installConfig": {
|
|
35
|
+
"hoistingLimits": "workspaces"
|
|
36
|
+
},
|
|
32
37
|
"dependencies": {
|
|
33
|
-
"@stytch/core": "2.5.
|
|
38
|
+
"@stytch/core": "2.5.1",
|
|
34
39
|
"@types/google-one-tap": "^1.2.0"
|
|
35
40
|
},
|
|
36
41
|
"devDependencies": {
|
|
37
42
|
"@babel/preset-env": "7.18.6",
|
|
38
43
|
"@babel/preset-react": "7.18.6",
|
|
39
44
|
"@babel/preset-typescript": "7.18.6",
|
|
40
|
-
"@github/webauthn-json": "2.1.1",
|
|
41
45
|
"@preact/compat": "17.1.2",
|
|
46
|
+
"@preact/preset-vite": "2.8.1",
|
|
42
47
|
"@radix-ui/react-tabs": "0.1.5",
|
|
43
48
|
"@rollup/plugin-alias": "5.0.1",
|
|
44
49
|
"@rollup/plugin-babel": "5.3.1",
|
|
@@ -47,9 +52,19 @@
|
|
|
47
52
|
"@rollup/plugin-node-resolve": "13.3.0",
|
|
48
53
|
"@rollup/plugin-replace": "4.0.0",
|
|
49
54
|
"@rollup/plugin-typescript": "8.3.3",
|
|
55
|
+
"@storybook/addon-essentials": "7.6.10",
|
|
56
|
+
"@storybook/addon-interactions": "7.6.10",
|
|
57
|
+
"@storybook/addon-links": "7.6.10",
|
|
58
|
+
"@storybook/addon-themes": "7.6.10",
|
|
59
|
+
"@storybook/blocks": "7.6.10",
|
|
60
|
+
"@storybook/preact": "7.6.10",
|
|
61
|
+
"@storybook/preact-vite": "7.6.10",
|
|
62
|
+
"@storybook/react": "7.6.10",
|
|
63
|
+
"@storybook/test": "7.6.10",
|
|
50
64
|
"@testing-library/react": "12.1.3",
|
|
51
65
|
"@testing-library/user-event": "14.2.1",
|
|
52
66
|
"@types/grecaptcha": "3.0.4",
|
|
67
|
+
"@types/jest": "28.1.3",
|
|
53
68
|
"@types/js-cookie": "3.0.2",
|
|
54
69
|
"@types/jsdom": "16.2.14",
|
|
55
70
|
"@types/lodash.merge": "4.6.7",
|
|
@@ -57,6 +72,9 @@
|
|
|
57
72
|
"@types/styled-components": "5.1.25",
|
|
58
73
|
"esbuild": "0.19.2",
|
|
59
74
|
"eslint-config-custom": "0.0.1",
|
|
75
|
+
"jest": "28",
|
|
76
|
+
"jest-environment-jsdom": "28.1.1",
|
|
77
|
+
"jest-environment-jsdom-global": "3.1.2",
|
|
60
78
|
"js-cookie": "3.0.1",
|
|
61
79
|
"lodash.merge": "4.6.2",
|
|
62
80
|
"preact": "10.19.2",
|
|
@@ -70,11 +88,13 @@
|
|
|
70
88
|
"rollup-plugin-node-resolve": "5.2.0",
|
|
71
89
|
"rollup-plugin-sizes": "1.0.4",
|
|
72
90
|
"rollup-plugin-terser": "7.0.2",
|
|
73
|
-
"rollup-plugin-ts": "3.
|
|
91
|
+
"rollup-plugin-ts": "3.4.5",
|
|
92
|
+
"storybook": "7.6.10",
|
|
74
93
|
"styled-components": "5.3.5",
|
|
75
94
|
"swr": "2.1.1",
|
|
76
|
-
"typescript": "
|
|
77
|
-
"uuid": "8.3.2"
|
|
95
|
+
"typescript": "5.3.3",
|
|
96
|
+
"uuid": "8.3.2",
|
|
97
|
+
"vite": "5.0.12"
|
|
78
98
|
},
|
|
79
99
|
"homepage": "https://stytch.com/docs/sdks/javascript-sdk",
|
|
80
100
|
"resolutions": {
|