Files
libp2p-native-bridge/package.json
Chris Daßler 6f1d6ec37b Initial commit: libp2p-native-bridge package
- Extracted libp2p component from main app
- Created modular package structure with interfaces and implementations
- Added dependency injection for NativeModules
- Configured for IOR loading from Gitea
- Added comprehensive README and documentation
2025-08-29 11:18:37 +02:00

36 lines
846 B
JSON

{
"name": "@metatrom/libp2p-native-bridge",
"version": "1.0.0",
"main": "index.ts",
"type": "module",
"description": "Native libp2p bridge for React Native applications",
"metatrom": {
"ior": "com.metatrom.libp2p-native-bridge@1.0.0",
"capabilities": {
"p2p": true,
"contracts": false,
"viewer": false,
"sync": true
}
},
"exports": {
".": "./index.ts",
"./settings": "./implementations/SettingsService.ts",
"./ui": "./implementations/SettingsUI.tsx",
"./interfaces": "./interfaces/index.ts"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.72.0",
"@react-native-async-storage/async-storage": "*"
},
"keywords": [
"libp2p",
"react-native",
"p2p",
"networking",
"metatrom"
],
"author": "Metatrom",
"license": "MIT"
}