-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.66 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.66 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
{
"name": "react-native-powerauth-mobile-sdk",
"title": "PowerAuth SDK for React Native Mobile Apps",
"version": "0.0.1-dev",
"description": "Wultra PowerAuth Mobile SDK React Native component for iOS and Android",
"packageManager": "yarn@4.3.1+sha512.af78262d7d125afbfeed740602ace8c5e4405cd7f4735c08feb327286b2fdb2390fbca01589bfd1f50b1240548b74806767f5a063c94b67e431aabd0d86f7774",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src",
"scripts": {
"build": "yarn generate:sdk-version && bob build && yarn build:types",
"prepare": "yarn build",
"build:types": "tsc -p tsconfig.build-types.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint .",
"format": "prettier -w .",
"generate:sdk-version": "node scripts/generate-sdk-version.cjs"
},
"files": [
"README.md",
"src/**/*",
"android/generated/jni/CMakeLists.txt",
"android/src/main/AndroidManifest.xml",
"android/src/main/java/com/wultra/android/powerauth/bridge/*.*",
"android/src/main/java/com/wultra/android/powerauth/js/*.*",
"android/src/main/java/com/wultra/android/powerauth/reactnative/*.*",
"android/build.gradle",
"lib/**/*",
"ios/PowerAuth.xcodeproj/project.pbxproj",
"ios/PowerAuth/*.m",
"ios/PowerAuth/*.c",
"ios/PowerAuth/*.h",
"react-native-powerauth-mobile-sdk.podspec"
],
"homepage": "https://www.wultra.com/mobile-security-suite",
"repository": {
"type": "git",
"url": "https://github.com/wultra/react-native-powerauth-mobile-sdk.git"
},
"keywords": [
"react-native",
"powerauth",
"security"
],
"author": {
"name": "Wultra s.r.o.",
"email": "support@wultra.com"
},
"license": "Apache 2.0",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"dependencies": {
"node-fetch": ">=2.6.1"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@react-native/eslint-config": "^0.78.0",
"@react-native/eslint-plugin": "^0.84.0",
"@react-native/typescript-config": "^0.78.0",
"@types/react": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"react": "19.0.0",
"react-native": "^0.78.1",
"react-native-builder-bob": "^0.40.13",
"typescript": "^5.4.0"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"module",
{
"esm": true
}
],
"commonjs"
]
}
}