-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.29 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 3.29 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
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
{
"name": "react-native-security-toolkit",
"version": "0.1.0",
"description": "Comprehensive React Native mobile security toolkit providing Android/iOS runtime security checks, root and jailbreak detection, anti-debugging and anti-hooking signals, application integrity checks, secure hardware and biometric capabilities, network security checks, and a deterministic risk and policy engine.",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
"exports": {
".": {
"react-native-security-toolkit-source": "./src/index.ts",
"types": "./lib/typescript/src/index.d.ts",
"default": "./lib/module/index.js"
},
"./package.json": "./package.json"
},
"files": [
"src",
"lib",
"android",
"ios",
"*.podspec",
"!ios/build",
"!android/build",
"!android/.cxx",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/*.test.ts",
"!**/*.test.tsx",
"!**/.*",
"Package.swift",
"!ios/EngineTests"
],
"scripts": {
"build": "bob build",
"prepare": "bob build",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"clean": "del-cli lib android/build",
"test:android": "cd ../../example/android && ./gradlew :react-native-security-toolkit:testDebugUnitTest --console=plain",
"test:ios": "swift test"
},
"keywords": [
"react-native",
"security",
"mobile-security",
"app-security",
"root-detection",
"jailbreak-detection",
"android-security",
"ios-security",
"anti-tamper",
"anti-debugging",
"anti-hooking",
"frida-detection",
"magisk-detection",
"owasp",
"masvs",
"devsecops"
],
"repository": {
"type": "git",
"url": "git+https://github.com/programmer443/react-native-security-toolkit.git",
"directory": "packages/runtime"
},
"author": "Muhammad Ahmad <murtaza.irinatech@gmail.com> (https://github.com/programmer443)",
"license": "MIT",
"bugs": {
"url": "https://github.com/programmer443/react-native-security-toolkit/issues"
},
"homepage": "https://github.com/programmer443/react-native-security-toolkit#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public",
"provenance": true
},
"dependencies": {},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-typescript": "^7.27.0",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.0",
"babel-jest": "^30.2.0",
"del-cli": "^7.0.0",
"jest": "^30.2.0",
"react": "19.2.3",
"react-native": "0.87.0",
"react-native-builder-bob": "^0.43.0",
"typescript": "^6.0.3"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"module",
{
"esm": true
}
],
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"codegenConfig": {
"name": "SecurityToolkitSpec",
"type": "modules",
"jsSrcsDir": "src/specs",
"android": {
"javaPackageName": "com.rnsecurity"
}
}
}