-
Notifications
You must be signed in to change notification settings - Fork 224
/
package.json
62 lines (62 loc) · 2.55 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
{
"name": "@invertase/react-native-apple-authentication",
"version": "2.4.0",
"author": "Invertase <[email protected]> (http://invertase.io)",
"description": "A complete Apple Authentication services API for React Native iOS apps.",
"homepage": "https://github.com/invertase/react-native-apple-authentication",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"tsc:compile": "tsc --noEmit",
"build": "genversion --semi lib/version.js",
"build:all": "yarn build:clean && yarn build && yarn example:build:android && yarn example:build:ios",
"build:clean": "rimraf ios/build android/build example/android/app/build example/ios/build example/macos/build",
"build:docs": "typedoc --excludeExternals --out typedocs --plugin typedoc-plugin-markdown --hideBreadcrumbs --entryPoints lib/index.d.ts",
"prepare": "yarn build && yarn tsc:compile",
"example:prepare": "cd example && yarn && cd ios && (pod install || true) && cd ../macos && (pod install || true)",
"example:build:android": "cd example/android && ./gradlew assembleDebug",
"example:build:ios": "cd example && (xcodebuild -workspace ios/RNAppleAuthExample.xcworkspace -scheme RNAppleAuthExample -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build -UseModernBuildSystem=YES | xcbeautify || true)",
"example:build:macos": "cd example && (xcodebuild -workspace macos/RNAppleAuthExample.xcworkspace -scheme RNAppleAuthExample -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build -UseModernBuildSystem=YES | xcbeautify || true)",
"example:start": "cd example && yarn start",
"example:ios": "cd example && yarn ios",
"example:macos": "cd example && yarn macos",
"example:android": "cd example && yarn android",
"shipit": "yarn build && yarn tsc:compile && yarn np --no-tests"
},
"repository": {
"type": "git",
"url": "https://github.com/invertase/react-native-apple-authentication"
},
"license": "Apache-2.0",
"keywords": [
"react",
"react-native",
"apple",
"iOS",
"button",
"firebase",
"aws",
"authentication",
"ios",
"apple auth",
"apple authentication"
],
"devDependencies": {
"@react-native/eslint-config": "^0.76.0",
"@types/react": "18.2.34",
"genversion": "^3.1.1",
"np": "^10.0.7",
"prettier": "^3.0.3",
"react-native": "^0.76.0",
"rimraf": "^6.0.1",
"typedoc": "^0.22.15",
"typedoc-plugin-markdown": "^3.12.1",
"typescript": "^5.0.4"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14"
}
}