diff --git a/docs/README.md b/docs/README.md
index 5e6f1ef..2d0ddbe 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -10,7 +10,7 @@ npm install
npm start
```
-The development server opens at `http://localhost:3000/React-Native-Share-Content/`.
+The development server opens at `http://localhost:3000/expo-share-content/`.
## Production build
@@ -21,7 +21,7 @@ npm run serve
```
The static output is written to `docs/build/` and is configured for GitHub Pages at
-`https://ngocdevv.github.io/React-Native-Share-Content/`.
+`https://ngocdevv.github.io/expo-share-content/`.
## Deployment
diff --git a/docs/docusaurus.config.ts b/docs/docusaurus.config.ts
index d419a76..46badd6 100644
--- a/docs/docusaurus.config.ts
+++ b/docs/docusaurus.config.ts
@@ -7,9 +7,9 @@ const config: Config = {
tagline: 'Receive shared content reliably in Expo apps',
favicon: 'img/favicon.svg',
url: 'https://ngocdevv.github.io',
- baseUrl: '/React-Native-Share-Content/',
+ baseUrl: '/expo-share-content/',
organizationName: 'ngocdevv',
- projectName: 'React-Native-Share-Content',
+ projectName: 'expo-share-content',
trailingSlash: false,
onBrokenLinks: 'throw',
markdown: {
@@ -27,7 +27,7 @@ const config: Config = {
breadcrumbs: true,
showLastUpdateTime: false,
editUrl:
- 'https://github.com/ngocdevv/React-Native-Share-Content/edit/main/docs/',
+ 'https://github.com/ngocdevv/expo-share-content/edit/main/docs/',
},
blog: false,
theme: {
@@ -59,17 +59,17 @@ const config: Config = {
},
items: [
{
- href: '/React-Native-Share-Content/?section=features',
+ href: '/expo-share-content/?section=features',
label: 'Features',
position: 'left',
},
{
- href: '/React-Native-Share-Content/?section=showcase',
+ href: '/expo-share-content/?section=showcase',
label: 'Example',
position: 'left',
},
{
- href: '/React-Native-Share-Content/?section=faq',
+ href: '/expo-share-content/?section=faq',
label: 'FAQ',
position: 'left',
},
@@ -85,7 +85,7 @@ const config: Config = {
position: 'right',
},
{
- href: 'https://github.com/ngocdevv/React-Native-Share-Content',
+ href: 'https://github.com/ngocdevv/expo-share-content',
label: 'GitHub',
position: 'right',
className: 'navbar-github-link',
@@ -122,7 +122,7 @@ const config: Config = {
items: [
{
label: 'GitHub',
- href: 'https://github.com/ngocdevv/React-Native-Share-Content',
+ href: 'https://github.com/ngocdevv/expo-share-content',
},
{
label: 'npm',
@@ -130,7 +130,7 @@ const config: Config = {
},
{
label: 'License',
- href: 'https://github.com/ngocdevv/React-Native-Share-Content/blob/main/LICENSE',
+ href: 'https://github.com/ngocdevv/expo-share-content/blob/main/LICENSE',
},
],
},
diff --git a/docs/src/pages/index.tsx b/docs/src/pages/index.tsx
index ba04ac6..15f713f 100644
--- a/docs/src/pages/index.tsx
+++ b/docs/src/pages/index.tsx
@@ -291,7 +291,7 @@ export default function Home(): React.ReactNode {
View on GitHub
diff --git a/ios/ExpoShareContent.podspec b/ios/ExpoShareContent.podspec
index c896b3f..10442e6 100644
--- a/ios/ExpoShareContent.podspec
+++ b/ios/ExpoShareContent.podspec
@@ -4,7 +4,7 @@ Pod::Spec.new do |s|
s.summary = 'Receive content shared to an Expo app.'
s.description = 'An Expo Module for receiving text, URLs, images, videos, audio, and files from the system share sheet.'
s.author = 'ngocdevv'
- s.homepage = 'https://www.npmjs.com/package/expo-share-content'
+ s.homepage = 'https://github.com/ngocdevv/expo-share-content'
s.license = { :type => 'MIT', :file => '../LICENSE' }
s.platforms = { :ios => '16.4' }
s.source = { :http => "https://registry.npmjs.org/expo-share-content/-/expo-share-content-#{s.version}.tgz" }
diff --git a/package.json b/package.json
index 8f92e57..8c3f36e 100644
--- a/package.json
+++ b/package.json
@@ -56,6 +56,14 @@
],
"author": "ngocdevv (https://github.com/ngocdevv)",
"license": "MIT",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/ngocdevv/expo-share-content.git"
+ },
+ "homepage": "https://ngocdevv.github.io/expo-share-content/",
+ "bugs": {
+ "url": "https://github.com/ngocdevv/expo-share-content/issues"
+ },
"engines": {
"node": "^20.19.4 || ^22.13.0 || ^24.3.0 || >=25.0.0"
},