-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
94 lines (94 loc) · 2.68 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
{
"name": "strapi-plugin-mux-video-uploader",
"version": "3.0.1",
"description": "This plugin allows you to upload your content to Mux and use it with Strapi.",
"license": "MIT",
"type": "commonjs",
"strapi": {
"name": "mux-video-uploader",
"displayName": "Mux Video Uploader",
"icon": "plug",
"description": "This plugin allows you to upload your content to Mux and use it with Strapi.",
"kind": "plugin"
},
"author": {
"name": "Erik Peña",
"email": "[email protected]",
"url": "https://github.com/erikpena"
},
"maintainers": [
{
"name": "Erik Peña",
"email": "[email protected]",
"url": "https://github.com/erikpena"
}
],
"scripts": {
"build": "strapi-plugin build",
"test:ts:back": "run -T tsc -p server/tsconfig.json",
"test:ts:front": "run -T tsc -p admin/tsconfig.json",
"verify": "strapi-plugin verify",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link",
"preprepare": "husky install"
},
"dependencies": {
"@mux/mux-node": "^8.8.0",
"@mux/mux-player-react": "^3.0.0",
"@mux/upchunk": "^3.4.0",
"@strapi/design-system": "^2.0.0-rc.12",
"@strapi/icons": "^2.0.0-rc.12",
"@strapi/utils": "^4.20.5",
"axios": "^1.7.7",
"copy-to-clipboard": "^3.3.3",
"formik": "^2.4.6",
"iso-639-1": "^3.1.3",
"luxon": "^3.5.0",
"react-intl": "^6.7.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@strapi/sdk-plugin": "^5.2.6",
"@strapi/strapi": "^5.4.0",
"@strapi/typescript-utils": "^5.4.0",
"@types/luxon": "^3.4.2",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"husky": "^9.0.11",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"styled-components": "^6.1.13",
"typescript": "^5.6.2"
},
"peerDependencies": {
"@strapi/sdk-plugin": "^5.2.6",
"@strapi/strapi": "^5.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"styled-components": "^6.1.13"
},
"exports": {
"./package.json": "./package.json",
"./strapi-admin": {
"types": "./dist/admin/src/index.d.ts",
"source": "./admin/src/index.ts",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"types": "./dist/server/src/index.d.ts",
"source": "./server/src/index.ts",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
}
},
"files": [
"dist"
]
}