-
Notifications
You must be signed in to change notification settings - Fork 218
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·70 lines (70 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·70 lines (70 loc) · 2.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
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
{
"name": "react-native-appsflyer",
"version": "7.0.2",
"description": "React Native Appsflyer plugin",
"main": "index.ts",
"types": "index.ts",
"scripts": {
"test": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"contract:ios": "node scripts/generate-ios-rpc-contract.js",
"contract:android": "node scripts/generate-android-rpc-contract.js",
"contract": "npm run contract:ios && npm run contract:android",
"demo.ios": "npm run ios-pod; cd demos/appsflyer-react-native-app; npm run ios",
"demo.android": "cd demos/appsflyer-react-native-app; npm run android",
"ios-pod": "cd demos/appsflyer-react-native-app/ios; pod install; cd ../",
"doctor": "npx react-doctor@latest"
},
"repository": {
"type": "git",
"url": "https://github.com/AppsFlyerSDK/appsflyer-react-native-plugin.git"
},
"author": "Appsflyer / Maxim Shoustin",
"license": {
"type": "MIT",
"url": "https://github.com/AppsFlyerSDK/appsflyer-react-native-plugin/blob/master/LICENSE"
},
"homepage": "https://github.com/AppsFlyerSDK/appsflyer-react-native-plugin#readme",
"keywords": [
"react-native",
"react",
"native",
"appsflyer"
],
"bugs": {
"url": "https://github.com/AppsFlyerSDK/appsflyer-react-native-plugin/issues"
},
"codegenConfig": {
"name": "RNAppsFlyerSpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.appsflyer.reactnative"
}
},
"peerDependencies": {
"react-native": ">=0.76.0"
},
"dependencies": {
"@appsflyer-sdk/js-core-plugin": "7.0.15"
},
"devDependencies": {
"@babel/preset-env": "^7.26.9",
"@eslint/js": "^10.0.1",
"@expo/config-plugins": "^10.1.2",
"@react-native/babel-preset": "^0.76.5",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"babel-jest": "^29.7.0",
"eslint": "^10.8.0",
"jest": "^29.7.0",
"react": "18.3.1",
"react-native": "^0.76.5",
"react-test-renderer": "18.3.1",
"ts-jest": "^29.4.11",
"ts-node": "^9.1.1",
"typescript": "^6.0.3"
}
}