@storyblok/js 3.0.7 → 3.0.9
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +22 -23
- package/dist/storyblok-js.js +2 -2
- package/dist/storyblok-js.mjs +358 -349
- package/package.json +16 -8
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@storyblok/js",
|
3
|
-
"version": "3.0.
|
3
|
+
"version": "3.0.9",
|
4
4
|
"description": "SDK to integrate Storyblok into your project using JavaScript.",
|
5
5
|
"main": "./dist/storyblok-js.js",
|
6
6
|
"module": "./dist/storyblok-js.mjs",
|
@@ -28,17 +28,17 @@
|
|
28
28
|
"prepublishOnly": "npm run build && cp ../README.md ./"
|
29
29
|
},
|
30
30
|
"dependencies": {
|
31
|
-
"storyblok-js-client": "^6.
|
31
|
+
"storyblok-js-client": "^6.8.3"
|
32
32
|
},
|
33
33
|
"devDependencies": {
|
34
|
-
"@tsconfig/recommended": "^1.0.
|
35
|
-
"cypress": "^13.
|
34
|
+
"@tsconfig/recommended": "^1.0.6",
|
35
|
+
"cypress": "^13.7.3",
|
36
36
|
"eslint-plugin-cypress": "^2.15.1",
|
37
|
-
"eslint-plugin-jest": "^
|
37
|
+
"eslint-plugin-jest": "^28.8.0",
|
38
38
|
"isomorphic-fetch": "^3.0.0",
|
39
39
|
"start-server-and-test": "^2.0.3",
|
40
|
-
"vite": "^5.1
|
41
|
-
"vitest": "^
|
40
|
+
"vite": "^5.4.1",
|
41
|
+
"vitest": "^2.0.5"
|
42
42
|
},
|
43
43
|
"babel": {
|
44
44
|
"presets": [
|
@@ -63,7 +63,15 @@
|
|
63
63
|
},
|
64
64
|
"release": {
|
65
65
|
"branches": [
|
66
|
-
"main"
|
66
|
+
"main",
|
67
|
+
{
|
68
|
+
"name": "next",
|
69
|
+
"prerelease": true
|
70
|
+
},
|
71
|
+
{
|
72
|
+
"name": "beta",
|
73
|
+
"prerelease": true
|
74
|
+
}
|
67
75
|
]
|
68
76
|
},
|
69
77
|
"repository": {
|