-
Notifications
You must be signed in to change notification settings - Fork 167
/
package.json
157 lines (157 loc) · 4.37 KB
/
package.json
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "react-native-fbsdk-next",
"version": "13.3.0",
"description": "Facebook SDK support for React Native apps.",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"sideEffects": false,
"author": {
"name": "Marcos Bérgamo"
},
"contributors": [
{
"name": "Zhuowen Deng"
},
{
"name": "Chris Hackmann"
},
{
"name": "Pouya Larjani"
},
{
"name": "Cody Winton"
},
{
"name": "Janic Duplessis"
},
{
"name": "Georges DIMITRY"
},
{
"name": "Mike Hardy"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/thebergamo/react-native-fbsdk-next.git"
},
"homepage": "https://github.com/thebergamo/react-native-fbsdk-next/",
"keywords": [
"react",
"react-native",
"react-component",
"ios",
"android",
"facebook",
"core"
],
"license": "MIT",
"scripts": {
"build:plugin": "tsc --build plugin",
"clean:plugin": "expo-module clean plugin",
"lint:plugin": "eslint plugin/src/*",
"start": "react-native start",
"prepare": "bob build && npm run clean:plugin && npm run build:plugin",
"lint": "eslint ./src",
"test": "yarn validate:prettier && yarn validate:eslint && yarn jest",
"validate:eslint": "eslint \"src/**/*\"",
"validate:prettier": "prettier \"{src,jest,plugin/src}/**/*.{js,ts,tsx}\" --check",
"validate:prettier:fix": "prettier \"{src,jest,plugin/src}/**/*.{js,ts,tsx}\" --write",
"validate:ts": "tsc --noEmit",
"example:start": "cd ./RNFBSDKExample && yarn start",
"example:ios": "cd ./RNFBSDKExample/ios && rm -f Podfile.lock && pod install --repo-update && yarn ios",
"example:android": "cd ./RNFBSDKExample && yarn android",
"example:clean": "cd RNFBSDKExample && \\rm -fr yarn.lock node_modules ios/Podfile.lock && cd ..",
"example:install": "cd RNFBSDKExample && yarn && cd ios && (rm -f Podfile.lock && pod install || true) && cd ../..",
"example:devcopy": "yarn prepare && cp -rv package.json android ios lib src *.podspec RNFBSDKExample/node_modules/react-native-fbsdk-next/",
"semantic-release": "semantic-release",
"jest": "jest"
},
"files": [
"android/src/main/AndroidManifest.xml",
"android/src/main/java/",
"android/build.gradle",
"ios",
"lib",
"src",
"LICENSE.txt",
"README.md",
"react-native-fbsdk-next.podspec",
"jest",
"tsconfig.json",
"app.plugin.js",
"expo-module.config.json",
"plugin/build/"
],
"peerDependencies": {
"expo": ">=47.0.0",
"react-native": ">=0.63.3"
},
"peerDependenciesMeta": {
"expo": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/runtime": "^7.23.9",
"@react-native-community/eslint-config": "^3.2.0",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@tsconfig/node14": "^14.1.0",
"@types/react": "^18.2.79",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"babel-jest": "^29.7.0",
"babel-plugin-module-resolver": "^5.0.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^8.56.0",
"expo": "^51.0.38",
"expo-module-scripts": "^3.4.0",
"jest": "^29.7.0",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "^3.2.4",
"react": "18.2.0",
"react-native": "^0.74.5",
"react-native-builder-bob": "^0.23.2",
"react-test-renderer": "18.2.0",
"semantic-release": "^23.0.0",
"typescript": "^5.3.3",
"xml2js": "^0.6.2"
},
"resolutions": {
"cliui": "^6",
"lru-cache": "^8"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"bracketSameLine": true,
"parser": "typescript"
},
"react-native": "src/index.ts",
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}