@shotstack/shotstack-studio 2.4.3 → 2.4.5
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/internal.es.js +9202 -9793
- package/dist/internal.umd.js +39 -39
- package/dist/shotstack-studio.es.js +9883 -10499
- package/dist/shotstack-studio.umd.js +114 -122
- package/package.json +12 -3
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"dazzatron",
|
|
7
7
|
"kratos2k7"
|
|
8
8
|
],
|
|
9
|
-
"version": "2.4.
|
|
9
|
+
"version": "2.4.5",
|
|
10
10
|
"description": "A video editing library for creating and editing videos with Shotstack",
|
|
11
11
|
"type": "module",
|
|
12
12
|
"main": "dist/shotstack-studio.umd.js",
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
"url": "https://github.com/shotstack/shotstack-studio-sdk"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
|
+
"prepare": "husky",
|
|
51
52
|
"dev": "vite",
|
|
52
53
|
"dev:shotstack": "vite --open /shotstack.html",
|
|
53
54
|
"start": "npm run build && vite preview",
|
|
@@ -86,8 +87,10 @@
|
|
|
86
87
|
"eslint-config-airbnb-typescript": "^18.0.0",
|
|
87
88
|
"eslint-config-prettier": "^9.1.0",
|
|
88
89
|
"eslint-plugin-import": "^2.31.0",
|
|
90
|
+
"husky": "^9.1.7",
|
|
89
91
|
"jest": "^30.2.0",
|
|
90
92
|
"jest-environment-jsdom": "^30.2.0",
|
|
93
|
+
"lint-staged": "^16.4.0",
|
|
91
94
|
"prettier": "^3.6.2",
|
|
92
95
|
"semantic-release": "^25.0.3",
|
|
93
96
|
"ts-jest": "^29.4.5",
|
|
@@ -96,8 +99,8 @@
|
|
|
96
99
|
"vite-plugin-dts": "^4.5.4"
|
|
97
100
|
},
|
|
98
101
|
"dependencies": {
|
|
99
|
-
"@shotstack/schemas": "1.9.
|
|
100
|
-
"@shotstack/shotstack-canvas": "^2.1.
|
|
102
|
+
"@shotstack/schemas": "1.9.10",
|
|
103
|
+
"@shotstack/shotstack-canvas": "^2.1.12",
|
|
101
104
|
"howler": "^2.2.4",
|
|
102
105
|
"mediabunny": "^1.11.2",
|
|
103
106
|
"opentype.js": "^1.3.4",
|
|
@@ -105,6 +108,12 @@
|
|
|
105
108
|
"pixi.js": "^8.15.0",
|
|
106
109
|
"zod": "^4.0.0"
|
|
107
110
|
},
|
|
111
|
+
"lint-staged": {
|
|
112
|
+
"*.{ts,tsx}": [
|
|
113
|
+
"eslint --fix",
|
|
114
|
+
"prettier --write"
|
|
115
|
+
]
|
|
116
|
+
},
|
|
108
117
|
"publishConfig": {
|
|
109
118
|
"access": "public",
|
|
110
119
|
"registry": "https://registry.npmjs.org/"
|