@stytch/vanilla-js 4.6.0 → 4.7.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/CHANGELOG.md +18 -0
- package/dist/b2b/index.esm.js +3238 -3214
- package/dist/b2b/index.headless.esm.js +671 -655
- package/dist/b2b/index.headless.js +649 -635
- package/dist/b2b/index.js +3191 -3169
- package/dist/index.esm.js +3794 -3778
- package/dist/index.headless.esm.js +752 -736
- package/dist/index.headless.js +748 -734
- package/dist/index.js +3819 -3805
- package/package.json +8 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stytch/vanilla-js",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.7.1",
|
|
4
4
|
"description": "Stytch's official Javascript Client Library",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.esm.js",
|
|
@@ -19,7 +19,8 @@
|
|
|
19
19
|
"test": "jest",
|
|
20
20
|
"storybook": "storybook dev -p 6006 --ci",
|
|
21
21
|
"build-storybook": "storybook build",
|
|
22
|
-
"test-storybook": "test-storybook"
|
|
22
|
+
"test-storybook": "test-storybook",
|
|
23
|
+
"test-storybook:static": "yarn concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"yarn http-server storybook-static --port 6006 --silent\" \"yarn wait-on -t 30s tcp:127.0.0.1:6006 && yarn test-storybook\""
|
|
23
24
|
},
|
|
24
25
|
"license": "MIT",
|
|
25
26
|
"author": "Stytch",
|
|
@@ -36,7 +37,7 @@
|
|
|
36
37
|
"hoistingLimits": "workspaces"
|
|
37
38
|
},
|
|
38
39
|
"dependencies": {
|
|
39
|
-
"@stytch/core": "2.
|
|
40
|
+
"@stytch/core": "2.9.0",
|
|
40
41
|
"@types/google-one-tap": "^1.2.0"
|
|
41
42
|
},
|
|
42
43
|
"devDependencies": {
|
|
@@ -73,8 +74,10 @@
|
|
|
73
74
|
"@types/react-dom": "18.0.5",
|
|
74
75
|
"@types/styled-components": "5.1.25",
|
|
75
76
|
"bs58": "5.0.0",
|
|
77
|
+
"concurrently": "8.2.2",
|
|
76
78
|
"esbuild": "0.19.2",
|
|
77
79
|
"eslint-config-custom": "0.0.1",
|
|
80
|
+
"http-server": "14.1.1",
|
|
78
81
|
"jest": "28",
|
|
79
82
|
"jest-environment-jsdom": "28.1.1",
|
|
80
83
|
"jest-environment-jsdom-global": "3.1.2",
|
|
@@ -97,7 +100,8 @@
|
|
|
97
100
|
"swr": "2.1.1",
|
|
98
101
|
"typescript": "5.3.3",
|
|
99
102
|
"uuid": "8.3.2",
|
|
100
|
-
"vite": "5.0.12"
|
|
103
|
+
"vite": "5.0.12",
|
|
104
|
+
"wait-on": "7.2.0"
|
|
101
105
|
},
|
|
102
106
|
"homepage": "https://stytch.com/docs/sdks/javascript-sdk",
|
|
103
107
|
"resolutions": {
|