-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
128 lines (128 loc) · 3.62 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "sanity-plugin-mux-input",
"version": "2.4.0",
"description": "An input component that integrates Sanity Studio with Mux video encoding/hosting service.",
"keywords": [
"sanity",
"video",
"mux",
"input",
"plugin",
"sanity-plugin",
"media"
],
"homepage": "https://github.com/sanity-io/sanity-plugin-mux-input#readme",
"bugs": {
"url": "https://github.com/sanity-io/sanity-plugin-mux-input/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:sanity-io/sanity-plugin-mux-input.git"
},
"license": "MIT",
"author": "Sanity.io <[email protected]>",
"sideEffects": false,
"type": "commonjs",
"exports": {
".": {
"source": "./src/_exports/index.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"src",
"dist",
"sanity.json",
"v2-incompatible.js"
],
"scripts": {
"build": "plugin-kit verify-package --silent && pkg-utils build --strict --check --clean",
"clean": "rimraf lib",
"dev": "plugin-kit link-watch --strict",
"format": "prettier --write --cache --ignore-unknown .",
"link-watch": "plugin-kit link-watch",
"lint": "eslint .",
"prepare": "husky install || true",
"prepublishOnly": "npm run build",
"test": "npm run lint && npm run type-check && npm run build",
"type-check": "tsc --noEmit",
"watch": "pkg-utils watch --strict"
},
"dependencies": {
"@mux/mux-player-react": "^2.6.0",
"@mux/upchunk": "^3.4.0",
"@sanity/icons": "^3.0.0",
"@sanity/incompatible-plugin": "^1.0.4",
"@sanity/ui": "^2.1.11",
"@sanity/uuid": "^3.0.2",
"iso-639-1": "^3.1.2",
"jsonwebtoken-esm": "^1.0.5",
"lodash": "^4.17.21",
"react-rx": "^4.1.5",
"rxjs": "^7.8.1",
"scroll-into-view-if-needed": "^3.1.0",
"suspend-react": "^0.1.3",
"swr": "^2.2.5",
"type-fest": "^4.18.2",
"use-error-boundary": "^2.0.6"
},
"devDependencies": {
"@sanity/client": "^6.22.4",
"@sanity/pkg-utils": "^6.11.11",
"@sanity/plugin-kit": "4.0.18",
"@sanity/semantic-release-preset": "^5.0.0",
"@sanity/vision": "^3.64.1",
"@types/lodash": "^4.17.13",
"@types/react": "^18.3.12",
"@types/react-is": "^18.3.0",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-sanity": "^7.1.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"npm-run-all2": "^5.0.2",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-is": "^18.3.1",
"rimraf": "^5.0.7",
"sanity": "^3.64.1",
"semantic-release": "^24.2.0",
"styled-components": "^6.1.13",
"typescript": "^5.6.3",
"yalc": "1.0.0-pre.53"
},
"peerDependencies": {
"react": "^18",
"react-is": "^18",
"sanity": "^3.42.0",
"styled-components": "^5 || ^6"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"sanityExchangeUrl": "https://www.sanity.io/plugins/sanity-plugin-mux-input",
"browserslist": "extends @sanity/browserslist-config",
"sanityPlugin": {
"verifyPackage": {
"srcIndex": false
}
}
}