fix: fix name conflict

Resolves name conflicts with other native modules.
Bump version to 0.1.1.
This commit is contained in:
coreyphillips
2024-09-15 12:35:12 -04:00
parent 9dcb906636
commit 31ecec8366
58 changed files with 14698 additions and 32882 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@synonymdev/react-native-pubky",
"version": "0.1.0",
"version": "0.1.1",
"description": "React Native Implementation of Pubky",
"source": "./src/index.tsx",
"main": "./lib/commonjs/index.js",
@@ -37,18 +37,19 @@
"!**/.*"
],
"scripts": {
"example": "yarn workspace react-native-pubky-example",
"test": "jest",
"typecheck": "tsc",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib",
"prepare": "bob build",
"release": "release-it",
"reinstall": "npm i && npm run clean && npm run prepare",
"cargo-build": "cd rust && cargo build --release && cd pubky && cargo build --release && cd pubky && cargo build --release && cd ../ && cd pubky-common && cargo build --release && cd ../ && cd pubky-homeserver && cargo build --release && cd ../../../",
"example:ios": "cd example && cd ios && rm -rf Pods && cd ../ && npm i && bundle install && npm run build:ios && npm run ios",
"example:android": "cd example && npm i && npm run build:android && npm run android",
"reinstall": "yarn install && npm run clean && npm run prepare",
"cargo-build": "cd rust && cargo build && cd pubky && cargo build && cd pubky && cargo build && cd ../ && cd pubky-common && cargo build && cd ../ && cd pubky-homeserver && cargo build && cd ../../../",
"update-bindings:ios": "npm run cargo-build && node setup-ios-bindings.js && npm run reinstall",
"update-bindings:android": "npm run cargo-build && node setup-android-bindings.js && npm run reinstall",
"update-bindings": "npm run cargo-build && npm run update-bindings:ios && npm run update-bindings:android"
"update-bindings": "npm run reinstall && npm run cargo-build && npm run update-bindings:ios && npm run update-bindings:android"
},
"keywords": [
"pubky",
@@ -58,7 +59,7 @@
],
"repository": {
"type": "git",
"url": "git+https://https://github.com/pubky/react-native-pubky.git"
"url": "git+https://github.com/pubky/react-native-pubky.git"
},
"author": "coreyphillips <corey@synonym.to> (https://github.com/coreyphillips)",
"license": "MIT",
@@ -88,7 +89,7 @@
"jest": "^29.7.0",
"prettier": "^3.0.3",
"react": "18.3.1",
"react-native": "0.75.2",
"react-native": "0.75.3",
"react-native-builder-bob": "^0.30.2",
"release-it": "^15.0.0",
"turbo": "^1.10.7",
@@ -193,6 +194,6 @@
"create-react-native-library": {
"type": "module-legacy",
"languages": "kotlin-swift",
"version": "0.41.1"
"version": "0.41.2"
}
}