forked from MK-ayaz/react-native-fbads
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.54 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.54 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
{
"name": "react-native-fbads",
"version": "8.0.0",
"description": "Modern Facebook Audience Network integration for React Native with hooks API, full TypeScript support, and enterprise-grade error handling",
"repository": {
"type": "git",
"url": "https://github.com/MK-ayaz/react-native-fbads"
},
"homepage": "https://github.com/MK-ayaz/react-native-fbads",
"main": "dist/lib/index.js",
"react-native": "src/index.ts",
"typings": "src/index.ts",
"types": "src/index.ts",
"directories": {
"example": "example"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build:plugin": "tsc --build plugin",
"build": "tsc --project .",
"clean:plugin": "expo-module clean plugin",
"prepare": "npm run build:plugin && npm run build",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,json}\"",
"type-check": "tsc --noEmit",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Suraj Tiwari <surajtiwari020@gmail.com>",
"license": "MIT",
"peerDependencies": {
"react": ">=18.2.0",
"react-native": ">=0.76.0"
},
"dependencies": {
"@expo/config-plugins": "^7.0.0"
},
"devDependencies": {
"@testing-library/react-native": "^12.4.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.50.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.0",
"eslint-plugin-jsx-a11y": "^6.7.0",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"expo-module-scripts": "^3.0.0",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"react": "18.3.1",
"react-native": "0.76.0",
"react-native-test-utils": "^1.1.0",
"typescript": "^5.1.0"
},
"keywords": [
"react-native",
"facebook",
"audience-network",
"native-ads",
"banner-ads",
"interstitial-ads",
"hooks",
"typescript"
],
"files": [
"android/app",
"android/build.gradle",
"android/gradle.properties",
"android/gradle/wrapper",
"android/gradlew",
"android/gradlew.bat",
"android/settings.gradle",
"ios",
"src",
"LICENSE",
"package.json",
"dist",
"react-native.config.js",
"ReactNativeAdsFacebook.podspec",
"app.plugin.js",
"plugin/build/"
]
}