Files
2026-02-06 20:16:52 +01:00

70 lines
1.6 KiB
JSON

{
"name": "react-native-atlantis",
"version": "1.0.0",
"description": "Capture HTTP/HTTPS traffic from React Native apps and send to Proxyman for debugging",
"main": "src/index.ts",
"react-native": "src/index.ts",
"source": "src/index.ts",
"types": "src/index.ts",
"files": [
"src",
"ios",
"android",
"react-native-atlantis.podspec",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!ios/build",
"!android/build"
],
"scripts": {
"test": "jest",
"typecheck": "tsc --noEmit",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"example": "yarn workspace react-native-atlantis-example"
},
"keywords": [
"react-native",
"proxyman",
"atlantis",
"network",
"debugging",
"http",
"https",
"interceptor"
],
"repository": {
"type": "git",
"url": "https://github.com/nicksantamaria/atlantis.git"
},
"author": "Proxyman <support@proxyman.com> (https://proxyman.com)",
"license": "MIT",
"homepage": "https://proxyman.com",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/react": "^18.2.0",
"@types/react-native": "^0.73.0",
"jest": "^29.7.0",
"react": "^18.2.0",
"react-native": "^0.74.0",
"typescript": "^5.4.0"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.65.0"
},
"codegenConfig": {
"name": "RNAtlantisSpec",
"type": "modules",
"jsSrcsDir": "src"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/",
"<rootDir>/android/",
"<rootDir>/ios/"
]
}
}