diff --git a/packages/bottom-tabs/README.md b/packages/bottom-tabs/README.md index 59011c78..ccf1cd1a 100644 --- a/packages/bottom-tabs/README.md +++ b/packages/bottom-tabs/README.md @@ -7,7 +7,7 @@ Bottom tab navigator for React Navigation following iOS design guidelines. Open a Terminal in your project's folder and run, ```sh -yarn add @react-navigation/bottom-tabs +yarn add @react-navigation/core @react-navigation/bottom-tabs ``` ## Usage diff --git a/packages/bottom-tabs/package.json b/packages/bottom-tabs/package.json index 3fe93c8b..c791c557 100644 --- a/packages/bottom-tabs/package.json +++ b/packages/bottom-tabs/package.json @@ -12,6 +12,11 @@ ], "version": "5.0.0-alpha.0", "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/react-navigation/navigation-ex.git", + "directory": "packages/bottom-tabs" + }, "main": "lib/commonjs/index.js", "react-native": "src/index.tsx", "module": "lib/module/index.js", @@ -28,7 +33,6 @@ "clean": "del lib" }, "dependencies": { - "@react-navigation/core": "^5.0.0-alpha.0", "@react-navigation/routers": "^5.0.0-alpha.0", "react-native-safe-area-view": "^0.14.6" }, @@ -42,6 +46,7 @@ "typescript": "^3.5.3" }, "peerDependencies": { + "@react-navigation/core": "^5.0.0-alpha.0", "react": "*", "react-native": "*" }, diff --git a/packages/core/package.json b/packages/core/package.json index c960b918..3170d353 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -8,6 +8,11 @@ ], "version": "5.0.0-alpha.0", "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/react-navigation/navigation-ex.git", + "directory": "packages/core" + }, "main": "lib/commonjs/index.js", "react-native": "src/index.tsx", "module": "lib/module/index.js", diff --git a/packages/drawer/README.md b/packages/drawer/README.md index d92a9440..a1790178 100644 --- a/packages/drawer/README.md +++ b/packages/drawer/README.md @@ -7,7 +7,7 @@ Bottom tab navigator for React Navigation following iOS design guidelines. Open a Terminal in your project's folder and run, ```sh -yarn add @react-navigation/drawer +yarn add @react-navigation/core @react-navigation/drawer ``` Now we need to install [`react-native-gesture-handler`](https://github.com/kmagiera/react-native-gesture-handler) and [`react-native-reanimated`](https://github.com/kmagiera/react-native-reanimated). diff --git a/packages/drawer/package.json b/packages/drawer/package.json index 985c54c2..97a9b27f 100644 --- a/packages/drawer/package.json +++ b/packages/drawer/package.json @@ -13,6 +13,11 @@ ], "version": "5.0.0-alpha.0", "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/react-navigation/navigation-ex.git", + "directory": "packages/drawer" + }, "main": "lib/commonjs/index.js", "react-native": "src/index.tsx", "module": "lib/module/index.js", @@ -29,7 +34,6 @@ "clean": "del lib" }, "dependencies": { - "@react-navigation/core": "^5.0.0-alpha.0", "@react-navigation/routers": "^5.0.0-alpha.0", "react-native-safe-area-view": "^0.14.6" }, @@ -46,8 +50,12 @@ "typescript": "^3.5.3" }, "peerDependencies": { + "@react-navigation/core": "^5.0.0-alpha.0", "react": "*", - "react-native": "*" + "react-native": "*", + "react-native-gesture-handler": "^1.0.0", + "react-native-reanimated": "^1.0.0", + "react-native-screens": "^1.0.0-alpha.0" }, "@react-native-community/bob": { "source": "src", diff --git a/packages/material-bottom-tabs/README.md b/packages/material-bottom-tabs/README.md index d71cc2ca..6ea2bbbc 100644 --- a/packages/material-bottom-tabs/README.md +++ b/packages/material-bottom-tabs/README.md @@ -7,7 +7,7 @@ React Navigation integration for [bottom navigation](https://material.io/design/ Open a Terminal in your project's folder and run, ```sh -yarn add @react-navigation/material-bottom-tabs +yarn add @react-navigation/core @react-navigation/material-bottom-tabs ``` Setup `react-native-paper` following the [Getting Started guide](https://callstack.github.io/react-native-paper/getting-started.html). diff --git a/packages/material-bottom-tabs/package.json b/packages/material-bottom-tabs/package.json index ad406638..d869ca1a 100644 --- a/packages/material-bottom-tabs/package.json +++ b/packages/material-bottom-tabs/package.json @@ -13,6 +13,11 @@ ], "version": "5.0.0-alpha.0", "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/react-navigation/navigation-ex.git", + "directory": "packages/material-bottom-tabs" + }, "main": "lib/commonjs/index.js", "react-native": "src/index.tsx", "module": "lib/module/index.js", @@ -29,7 +34,6 @@ "clean": "del lib" }, "dependencies": { - "@react-navigation/core": "^5.0.0-alpha.0", "@react-navigation/routers": "^5.0.0-alpha.0" }, "devDependencies": { @@ -45,6 +49,7 @@ "typescript": "^3.5.3" }, "peerDependencies": { + "@react-navigation/core": "^5.0.0-alpha.0", "react": "*", "react-native": "*", "react-native-paper": "^3.0.0-alpha.3", diff --git a/packages/material-top-tabs/README.md b/packages/material-top-tabs/README.md index 748957ae..0f4cedde 100644 --- a/packages/material-top-tabs/README.md +++ b/packages/material-top-tabs/README.md @@ -7,7 +7,7 @@ React Navigation integration for animated tab view component from [`react-native Open a Terminal in your project's folder and run, ```sh -yarn add @react-navigation/material-top-tabs react-native-tab-view +yarn add @react-navigation/core @react-navigation/material-top-tabs react-native-tab-view ``` Now we need to install [`react-native-gesture-handler`](https://github.com/kmagiera/react-native-gesture-handler) and [`react-native-reanimated`](https://github.com/kmagiera/react-native-reanimated). diff --git a/packages/material-top-tabs/package.json b/packages/material-top-tabs/package.json index 05910df1..a07949f7 100644 --- a/packages/material-top-tabs/package.json +++ b/packages/material-top-tabs/package.json @@ -13,6 +13,11 @@ ], "version": "5.0.0-alpha.0", "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/react-navigation/navigation-ex.git", + "directory": "packages/material-top-tabs" + }, "main": "lib/commonjs/index.js", "react-native": "src/index.tsx", "module": "lib/module/index.js", @@ -29,7 +34,6 @@ "clean": "del lib" }, "dependencies": { - "@react-navigation/core": "^5.0.0-alpha.0", "@react-navigation/routers": "^5.0.0-alpha.0" }, "devDependencies": { @@ -39,13 +43,17 @@ "del-cli": "^2.0.0", "react": "16.8.3", "react-native": "^0.59.8", + "react-native-gesture-handler": "^1.3.0", "react-native-reanimated": "^1.1.0", "react-native-tab-view": "^2.10.0", "typescript": "^3.5.3" }, "peerDependencies": { + "@react-navigation/core": "^5.0.0-alpha.0", "react": "*", "react-native": "*", + "react-native-gesture-handler": "^1.0.0", + "react-native-reanimated": "^1.0.0", "react-native-tab-view": "^2.10.0" }, "@react-native-community/bob": { diff --git a/packages/native/README.md b/packages/native/README.md index 1a450973..f6b10904 100644 --- a/packages/native/README.md +++ b/packages/native/README.md @@ -7,7 +7,7 @@ React Native integration for React Navigation Open a Terminal in your project's folder and run, ```sh -yarn add @react-navigation/native +yarn add @react-navigation/core @react-navigation/native ``` ## Usage diff --git a/packages/native/package.json b/packages/native/package.json index e4b8fdf6..0d266261 100644 --- a/packages/native/package.json +++ b/packages/native/package.json @@ -9,6 +9,11 @@ ], "version": "5.0.0-alpha.0", "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/react-navigation/navigation-ex.git", + "directory": "packages/native" + }, "main": "lib/commonjs/index.js", "react-native": "src/index.tsx", "module": "lib/module/index.js", @@ -24,9 +29,6 @@ "prepare": "bob build", "clean": "del lib" }, - "dependencies": { - "@react-navigation/core": "^5.0.0-alpha.0" - }, "devDependencies": { "@react-native-community/bob": "^0.7.0", "@types/react": "^16.8.24", @@ -37,6 +39,7 @@ "typescript": "^3.5.3" }, "peerDependencies": { + "@react-navigation/core": "^5.0.0-alpha.0", "react": "*", "react-native": "*" }, diff --git a/packages/routers/package.json b/packages/routers/package.json index a0e0f3fd..f862b625 100644 --- a/packages/routers/package.json +++ b/packages/routers/package.json @@ -8,6 +8,11 @@ ], "version": "5.0.0-alpha.0", "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/react-navigation/navigation-ex.git", + "directory": "packages/routers" + }, "main": "lib/commonjs/index.js", "react-native": "src/index.tsx", "module": "lib/module/index.js", @@ -24,7 +29,6 @@ "clean": "del lib" }, "dependencies": { - "@react-navigation/core": "^5.0.0-alpha.0", "shortid": "^2.2.14" }, "devDependencies": { @@ -32,6 +36,9 @@ "del-cli": "^2.0.0", "typescript": "^3.5.3" }, + "peerDependencies": { + "@react-navigation/core": "^5.0.0-alpha.0" + }, "@react-native-community/bob": { "source": "src", "output": "lib", diff --git a/packages/stack/README.md b/packages/stack/README.md index ef2371ed..460592ea 100644 --- a/packages/stack/README.md +++ b/packages/stack/README.md @@ -7,7 +7,7 @@ Bottom tab navigator for React Navigation following iOS design guidelines. Open a Terminal in your project's folder and run, ```sh -yarn add @react-navigation/stack +yarn add @react-navigation/core @react-navigation/stack @react-native-community/masked-view ``` Now we need to install [`react-native-gesture-handler`](https://github.com/kmagiera/react-native-gesture-handler) and [`react-native-reanimated`](https://github.com/kmagiera/react-native-reanimated). diff --git a/packages/stack/package.json b/packages/stack/package.json index 789b006d..620a063c 100644 --- a/packages/stack/package.json +++ b/packages/stack/package.json @@ -12,6 +12,11 @@ ], "version": "5.0.0-alpha.0", "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/react-navigation/navigation-ex.git", + "directory": "packages/stack" + }, "main": "lib/commonjs/index.js", "react-native": "src/index.tsx", "module": "lib/module/index.js", @@ -28,7 +33,6 @@ "clean": "del lib" }, "dependencies": { - "@react-navigation/core": "^5.0.0-alpha.0", "@react-navigation/routers": "^5.0.0-alpha.0", "react-native-safe-area-view": "^0.14.6" }, @@ -46,8 +50,13 @@ "typescript": "^3.5.3" }, "peerDependencies": { + "@react-native-community/masked-view": "^0.1.1", + "@react-navigation/core": "^5.0.0-alpha.0", "react": "*", - "react-native": "*" + "react-native": "*", + "react-native-gesture-handler": "^1.0.0", + "react-native-reanimated": "^1.0.0", + "react-native-screens": "^1.0.0-alpha.0" }, "@react-native-community/bob": { "source": "src",