This repository was archived by the owner on Feb 10, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 2.93 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
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
{
"name": "@fishjam-cloud/react-native-client",
"version": "0.24.0",
"description": "A React Native client for Fishjam",
"author": "Fishjam Team",
"license": "Apache-2.0",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "EXPO_NONINTERACTIVE=1 sh -c 'expo-module build && expo-module build plugin'",
"clean": "expo-module clean",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "yarn lint --fix",
"test": "expo-module test",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module",
"release": "release-it",
"docs": "sed 's/\\.github\\/images/media/g' README.md > README_docs.md && typedoc src/index.tsx --media ./.github/images --readme README_docs.md && rm README_docs.md",
"typecheck": "yarn tsc --noEmit && cd example && yarn tsc --noEmit"
},
"keywords": [
"react-native",
"expo",
"Fishjam",
"FishjamCloud",
"MembraneWebRTC",
"webRTC",
"streaming",
"video",
"audio"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fishjam-cloud/mobile-client-sdk.git",
"directory": "packages/react-native-client"
},
"bugs": {
"url": "https://github.com/fishjam-cloud/mobile-client-sdk/issues"
},
"homepage": "https://fishjam.io",
"dependencies": {
"promise-fs": "^2.1.1",
"protobufjs": "^7.4.0",
"react-native-whip-whep": "0.7.1",
"zod": "^3.25.71"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.0",
"@types/lodash": "^4.17.20",
"@types/promise-fs": "^2.1.2",
"@types/react": "~19.0.10",
"@types/react-dom": "^19",
"eslint": "^9.29.0",
"eslint-config-expo": "~9.2.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"expo-module-scripts": "^4.1.9",
"husky": "^9.1.7",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"jest-expo": "~53.0.9",
"jest-websocket-mock": "^2.4.0",
"pod-install": "^0.3.9",
"prettier": "^3.6.2",
"react-dom": "19.0.0",
"ts-proto": "^2.7.5",
"typedoc": "^0.28.7",
"typedoc-plugin-mark-react-functional-components": "^0.2.2",
"typescript": "~5.8.3"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
},
"jest": {
"preset": "jest-expo",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
],
"testEnvironment": "jsdom"
},
"files": [
"build/**",
"debug",
"livestream",
"android/build.gradle",
"android/src/**",
"ios/**/*.swift",
"ios/RNFishjamClient.podspec",
"plugin/build/**",
"plugin/broadcastExtensionFiles/**",
"app.plugin.js",
"expo-module.config.json",
"README.md",
"!**/node_modules"
],
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"listUnknownPackages": false
}
}
}
}