-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.14 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.14 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
109
110
111
112
113
114
115
{
"name": "@fishjam-cloud/react-native-worklets",
"version": "0.12.1",
"description": "Run a worklet on every frame a Fishjam camera track captures — the optional frame-processing tier of @fishjam-cloud/react-native-webrtc",
"license": "Apache-2.0",
"author": "Fishjam Team",
"main": "./dist/module/index.js",
"module": "./dist/module/index.js",
"types": "./dist/typescript/index.d.ts",
"react-native": "./dist/module/index.js",
"exports": {
".": {
"types": "./dist/typescript/index.d.ts",
"react-native": "./dist/module/index.js",
"import": "./dist/module/index.js",
"default": "./dist/module/index.js"
},
"./package.json": "./package.json"
},
"files": [
"src/NativeFishjamWorklets.ts",
"dist/**",
"cpp/**",
"ios/**",
"android/build.gradle",
"android/CMakeLists.txt",
"android/src/**",
"*.podspec"
],
"workspaces": [
"example"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fishjam-cloud/fishjam-react-native-worklets.git"
},
"homepage": "https://github.com/fishjam-cloud/fishjam-react-native-worklets#readme",
"bugs": "https://github.com/fishjam-cloud/fishjam-react-native-worklets/issues",
"keywords": [
"webrtc",
"fishjam",
"worklets",
"camera"
],
"scripts": {
"build": "bob build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"jest": "jest",
"lint": "eslint src --ext .ts,.tsx --fix",
"lint:check": "eslint src --ext .ts,.tsx",
"prepack": "yarn build",
"test": "yarn tsc && yarn lint:check && yarn format:check && yarn jest",
"tsc": "tsc --noEmit"
},
"react-native-builder-bob": {
"source": "src",
"output": "dist",
"targets": [
[
"module",
{
"configFile": true
}
],
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"codegenConfig": {
"name": "FishjamWorkletsSpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.fishjam.worklets"
}
},
"peerDependencies": {
"@fishjam-cloud/react-native-webrtc": ">=0.30.2",
"react-native": "*",
"react-native-worklets": "~0.12.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-typescript": "^7.27.0",
"@fishjam-cloud/react-native-webrtc": "0.30.2",
"@react-native/babel-preset": "0.86.3",
"@react-native/jest-preset": "0.86.3",
"@types/jest": "^29.5.14",
"@types/react": "19.2.14",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"babel-jest": "^29.7.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"react": "19.2.3",
"react-native": "0.86.3",
"react-native-builder-bob": "^0.18.2",
"react-native-worklets": "0.12.1",
"typescript": "^5.8.3"
},
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@4.16.0"
}