-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.09 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
{
"name": "@fishjam-cloud/react-native-webrtc-background-blur",
"version": "0.1.2",
"description": "Background blur video effect for @fishjam-cloud/react-native-webrtc",
"main": "dist/commonjs/index.js",
"module": "dist/module/index.js",
"types": "dist/typescript/commonjs/src/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/typescript/module/src/index.d.ts",
"default": "./dist/module/index.js"
},
"require": {
"types": "./dist/typescript/commonjs/src/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"files": [
"dist",
"src",
"android",
"ios",
"fishjam-react-native-webrtc-background-blur.podspec",
"react-native.config.js"
],
"scripts": {
"build": "bob build",
"clean": "del-cli dist",
"typecheck": "tsc --noEmit"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fishjam-cloud/react-native-webrtc-background-blur.git"
},
"homepage": "https://github.com/fishjam-cloud/react-native-webrtc-background-blur",
"keywords": [
"react-native",
"webrtc",
"background-blur",
"video-effects",
"fishjam"
],
"codegenConfig": {
"name": "RNBackgroundBlurSpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.fishjam.blur"
}
},
"peerDependencies": {
"@fishjam-cloud/react-native-client": "*",
"@fishjam-cloud/react-native-webrtc": "*",
"react": "*",
"react-native": ">=0.74.0"
},
"devDependencies": {
"@fishjam-cloud/react-native-client": "^0.25.1",
"@types/react": "^19.2.14",
"del-cli": "^7.0.0",
"react": "^19.2.4",
"react-native": "^0.84.1",
"react-native-builder-bob": "^0.40.18",
"typescript": "^5.9.3"
},
"react-native-builder-bob": {
"source": "src",
"output": "dist",
"targets": [
[
"commonjs",
{
"esm": true
}
],
[
"module",
{
"esm": true
}
],
"typescript"
]
},
"packageManager": "yarn@4.12.0"
}