forked from sanity-io/sanity-plugin-mux-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.14 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
{
"name": "sanity-plugin-mux-input",
"version": "1.1.0",
"description": "An input component that integrates Sanity Studio with Mux video encoding/hosting service.",
"main": "build/index.js",
"scripts": {
"build": "sanipack build",
"watch": "sanipack build --watch",
"test": "eslint .",
"prepublishOnly": "sanipack build && sanipack verify"
},
"repository": {
"type": "git",
"url": "[email protected]:sanity-io/sanity-plugin-mux-input.git"
},
"keywords": [
"sanity",
"video",
"mux",
"input",
"plugin",
"sanity-plugin"
],
"author": "Sanity.io <[email protected]>",
"license": "MIT",
"dependencies": {
"@mux/upchunk": "^2.2.2",
"@sanity/icons": "^1.2.1",
"@sanity/ui": "^0.36.12",
"@sanity/uuid": "^3.0.1",
"firebase": "^9.6.3",
"hls.js": "^0.11.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"media-chrome": "^0.2.2",
"prop-types": "^15.7.2",
"react-icons": "^4.3.1",
"rxjs": "^6.5.3"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-sanity": "^5.1.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-react": "^7.26.1",
"prettier": "^2.4.1",
"react": "^17.0.1",
"sanipack": "^2.0.1"
},
"peerDependencies": {
"@sanity/base": "^2.11.0",
"react": "^16.9 || ^17",
"styled-components": "^5.0.0"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/sanity-io/sanity-plugin-mux-input/issues"
},
"homepage": "https://github.com/sanity-io/sanity-plugin-mux-input#readme",
"prettier": {
"semi": false,
"printWidth": 100,
"bracketSpacing": false,
"singleQuote": true,
"arrowParens": "always",
"trailingComma": "es5"
},
"eslintConfig": {
"parser": "sanipack/babel/eslint-parser",
"extends": [
"sanity",
"sanity/react",
"prettier",
"prettier/react"
],
"rules": {
"react/prop-types": "off",
"react/jsx-boolean-value": "off",
"react/jsx-no-bind": "off",
"react/forbid-prop-types": "off",
"react/no-did-mount-set-state": "off"
}
}
}