-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.86 KB
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
{
"name": "@mux/mux-react-native-player",
"version": "0.1.3",
"description": "Mux-owned React Native video player powered by Mux Player for iOS and Android.",
"license": "MIT",
"main": "build/index.js",
"types": "build/index.d.ts",
"react-native": "src/index.ts",
"source": "src/index.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"react-native": "./src/index.ts",
"default": "./build/index.js"
},
"./plugin": "./plugin/index.js"
},
"files": [
"android/build.gradle",
"android/src",
"assets/*.gif",
"build/**/*.{js,d.ts,d.ts.map}",
"ios/*.{h,m,mm,swift}",
"plugin",
"src",
"expo-module.config.json",
"MuxReactNativePlayer.podspec",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"prepack": "npm run build",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit",
"check:plugin": "node --check plugin/withMuxReactNativePlayer.js",
"example:install": "npm --prefix example install",
"example:robots": "npm --prefix example run robots",
"example:ios:prebuild": "npm --prefix example run prebuild:ios -- --clean",
"example:ios": "npm --prefix example run ios",
"example:ios:build": "npm --prefix example run ios:build",
"android": "expo run:android",
"ios": "expo run:ios"
},
"keywords": [
"mux",
"react-native",
"expo",
"video",
"player"
],
"peerDependencies": {
"expo": "*",
"expo-linear-gradient": "*",
"expo-modules-core": "*",
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@expo/config-plugins": "^55.0.8",
"@types/react": "^19.2.14",
"expo": "^55.0.23",
"expo-linear-gradient": "^55.0.13",
"expo-modules-core": "^55.0.25",
"react": "19.2.0",
"react-native": "0.83.6",
"typescript": "~5.9.2",
"vitest": "^3.1.4"
}
}