sanity-plugin-mux-input 3.0.0 → 3.0.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/README.md +3 -49
- package/dist/index.d.mts +160 -159
- package/dist/index.d.ts +160 -159
- package/dist/index.js +19 -27
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +19 -26
- package/dist/index.mjs.map +1 -1
- package/package.json +16 -37
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sanity-plugin-mux-input",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "An input component that integrates Sanity Studio with Mux video encoding/hosting service.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"sanity",
|
|
@@ -11,13 +11,14 @@
|
|
|
11
11
|
"sanity-plugin",
|
|
12
12
|
"media"
|
|
13
13
|
],
|
|
14
|
-
"homepage": "https://github.com/sanity-io/sanity-plugin-mux-input#readme",
|
|
14
|
+
"homepage": "https://github.com/sanity-io/plugins/tree/main/plugins/sanity-plugin-mux-input#readme",
|
|
15
15
|
"bugs": {
|
|
16
|
-
"url": "https://github.com/sanity-io/
|
|
16
|
+
"url": "https://github.com/sanity-io/plugins/issues"
|
|
17
17
|
},
|
|
18
18
|
"repository": {
|
|
19
19
|
"type": "git",
|
|
20
|
-
"url": "git@github.com
|
|
20
|
+
"url": "git+ssh://git@github.com/sanity-io/plugins.git",
|
|
21
|
+
"directory": "plugins/sanity-plugin-mux-input"
|
|
21
22
|
},
|
|
22
23
|
"license": "MIT",
|
|
23
24
|
"author": "Sanity.io <hello@sanity.io>",
|
|
@@ -39,19 +40,8 @@
|
|
|
39
40
|
"sanity.json",
|
|
40
41
|
"v2-incompatible.js"
|
|
41
42
|
],
|
|
42
|
-
"scripts": {
|
|
43
|
-
"build": "plugin-kit verify-package --silent && pkg-utils build --strict --check --clean",
|
|
44
|
-
"dev": "sanity dev",
|
|
45
|
-
"format": "prettier --write --cache --ignore-unknown .",
|
|
46
|
-
"link-watch": "plugin-kit link-watch",
|
|
47
|
-
"lint": "eslint .",
|
|
48
|
-
"prepare": "husky install || true",
|
|
49
|
-
"prepublishOnly": "npm run build",
|
|
50
|
-
"test": "npm run lint && npm run type-check && npm run build",
|
|
51
|
-
"type-check": "tsc --noEmit",
|
|
52
|
-
"watch": "pkg-utils watch --strict"
|
|
53
|
-
},
|
|
54
43
|
"dependencies": {
|
|
44
|
+
"@mux/mux-player": "^3.8.0",
|
|
55
45
|
"@mux/mux-player-react": "^3.8.0",
|
|
56
46
|
"@mux/upchunk": "^3.4.0",
|
|
57
47
|
"@sanity/icons": "^3.0.0",
|
|
@@ -67,37 +57,21 @@
|
|
|
67
57
|
"suspend-react": "^0.1.3",
|
|
68
58
|
"swr": "^2.2.5",
|
|
69
59
|
"type-fest": "^4.18.2",
|
|
60
|
+
"use-device-pixel-ratio": "^1.1.2",
|
|
70
61
|
"use-error-boundary": "^2.0.6"
|
|
71
62
|
},
|
|
72
63
|
"devDependencies": {
|
|
73
64
|
"@sanity/client": "^7.12.1",
|
|
74
65
|
"@sanity/pkg-utils": "^8.1.29",
|
|
75
66
|
"@sanity/plugin-kit": "^4.0.20",
|
|
76
|
-
"@sanity/semantic-release-preset": "^5.0.0",
|
|
77
|
-
"@sanity/vision": "^6.0.0",
|
|
78
67
|
"@types/lodash": "^4.17.15",
|
|
68
|
+
"@types/node": "^24.13.2",
|
|
79
69
|
"@types/react": "^19.0.10",
|
|
80
70
|
"@types/react-is": "^19.0.0",
|
|
81
|
-
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
82
|
-
"@typescript-eslint/parser": "^7.18.0",
|
|
83
|
-
"eslint": "^8.57.1",
|
|
84
|
-
"eslint-config-prettier": "^9.1.0",
|
|
85
|
-
"eslint-config-react-app": "^7.0.1",
|
|
86
|
-
"eslint-config-sanity": "^7.1.4",
|
|
87
|
-
"eslint-plugin-import": "^2.31.0",
|
|
88
|
-
"eslint-plugin-prettier": "^5.2.3",
|
|
89
|
-
"eslint-plugin-react-hooks": "^5.1.0",
|
|
90
|
-
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
91
|
-
"husky": "^9.0.11",
|
|
92
|
-
"lint-staged": "^15.2.2",
|
|
93
|
-
"npm-run-all2": "^6.2.6",
|
|
94
|
-
"prettier": "^3.5.2",
|
|
95
|
-
"prettier-plugin-packagejson": "^2.5.9",
|
|
96
71
|
"react": "^19.0.0",
|
|
97
72
|
"react-dom": "^19.0.0",
|
|
98
73
|
"react-is": "^19.0.0",
|
|
99
|
-
"sanity": "^6.
|
|
100
|
-
"semantic-release": "^24.2.3",
|
|
74
|
+
"sanity": "^6.1.0",
|
|
101
75
|
"styled-components": "^6.1.15",
|
|
102
76
|
"typescript": "5.9.3"
|
|
103
77
|
},
|
|
@@ -117,7 +91,12 @@
|
|
|
117
91
|
"browserslist": "extends @sanity/browserslist-config",
|
|
118
92
|
"sanityPlugin": {
|
|
119
93
|
"verifyPackage": {
|
|
120
|
-
"srcIndex": false
|
|
94
|
+
"srcIndex": false,
|
|
95
|
+
"scripts": false,
|
|
96
|
+
"eslintImports": false
|
|
121
97
|
}
|
|
98
|
+
},
|
|
99
|
+
"scripts": {
|
|
100
|
+
"build": "plugin-kit verify-package --silent && pkg-utils build --strict --check --clean"
|
|
122
101
|
}
|
|
123
|
-
}
|
|
102
|
+
}
|