forked from fishjam-cloud/mobile-client-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.13 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.13 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
{
"name": "fishjam-mobile-sdk",
"version": "0.19.0",
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"homepage": "https://fishjam.io",
"workspaces": {
"packages": [
"packages/react-native-client",
"packages/android-client",
"packages/ios-client",
"common/plugins",
"internal/fishjam-chat",
"examples/webdriverio-test",
"examples/audio-only",
"examples/vision-camera",
"examples/video-player",
"examples/minimal-react-native"
]
},
"devDependencies": {
"typedoc": "^0.28.7",
"typedoc-material-theme": "^1.4.0",
"typescript": "~5.8.3"
},
"scripts": {
"setup": "sh ./scripts/init.sh",
"build": "yarn workspaces foreach -At run build",
"prepare": "yarn workspace @fishjam-cloud/react-native-client run prepare",
"typecheck": "yarn workspaces foreach -A -p run tsc",
"tsc": "",
"lint": "yarn workspaces foreach -A -p run lint",
"lint:check": "yarn workspaces foreach -A -p run lint:check && yarn prettier --check .github/*",
"docs": "typedoc",
"gen:proto": "make -f ./scripts/compile_protos.mk"
}
}