@depup/react-router-dom 7.13.1-depup.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE.md ADDED
@@ -0,0 +1,23 @@
1
+ MIT License
2
+
3
+ Copyright (c) React Training LLC 2015-2019
4
+ Copyright (c) Remix Software Inc. 2020-2021
5
+ Copyright (c) Shopify Inc. 2022-2023
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in all
15
+ copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,25 @@
1
+ # @depup/react-router-dom
2
+
3
+ > Dependency-bumped version of [react-router-dom](https://www.npmjs.com/package/react-router-dom)
4
+
5
+ Generated by [DepUp](https://github.com/depup/npm) -- all production
6
+ dependencies bumped to latest versions.
7
+
8
+ ## Installation
9
+
10
+ ```bash
11
+ npm install @depup/react-router-dom
12
+ ```
13
+
14
+ | Field | Value |
15
+ |-------|-------|
16
+ | Original | [react-router-dom](https://www.npmjs.com/package/react-router-dom) @ 7.13.1 |
17
+ | Processed | 2026-03-09 |
18
+ | Smoke test | passed |
19
+ | Deps updated | 0 |
20
+
21
+ ---
22
+
23
+ Source: https://github.com/depup/npm | Original: https://www.npmjs.com/package/react-router-dom
24
+
25
+ License inherited from the original package.
@@ -0,0 +1,2 @@
1
+ export { HydratedRouter, RouterProvider, RouterProviderProps } from 'react-router/dom';
2
+ export * from 'react-router';
@@ -0,0 +1,2 @@
1
+ export { HydratedRouter, RouterProvider, RouterProviderProps } from 'react-router/dom';
2
+ export * from 'react-router';
package/dist/index.js ADDED
@@ -0,0 +1,45 @@
1
+ /**
2
+ * react-router-dom v7.13.1
3
+ *
4
+ * Copyright (c) Remix Software Inc.
5
+ *
6
+ * This source code is licensed under the MIT license found in the
7
+ * LICENSE.md file in the root directory of this source tree.
8
+ *
9
+ * @license MIT
10
+ */
11
+ "use strict";
12
+ var __defProp = Object.defineProperty;
13
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
14
+ var __getOwnPropNames = Object.getOwnPropertyNames;
15
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
16
+ var __export = (target, all) => {
17
+ for (var name in all)
18
+ __defProp(target, name, { get: all[name], enumerable: true });
19
+ };
20
+ var __copyProps = (to, from, except, desc) => {
21
+ if (from && typeof from === "object" || typeof from === "function") {
22
+ for (let key of __getOwnPropNames(from))
23
+ if (!__hasOwnProp.call(to, key) && key !== except)
24
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
25
+ }
26
+ return to;
27
+ };
28
+ var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
29
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
30
+
31
+ // index.ts
32
+ var index_exports = {};
33
+ __export(index_exports, {
34
+ HydratedRouter: () => import_dom.HydratedRouter,
35
+ RouterProvider: () => import_dom.RouterProvider
36
+ });
37
+ module.exports = __toCommonJS(index_exports);
38
+ var import_dom = require("react-router/dom");
39
+ __reExport(index_exports, require("react-router"), module.exports);
40
+ // Annotate the CommonJS export names for ESM import in node:
41
+ 0 && (module.exports = {
42
+ HydratedRouter,
43
+ RouterProvider,
44
+ ...require("react-router")
45
+ });
package/dist/index.mjs ADDED
@@ -0,0 +1,18 @@
1
+ /**
2
+ * react-router-dom v7.13.1
3
+ *
4
+ * Copyright (c) Remix Software Inc.
5
+ *
6
+ * This source code is licensed under the MIT license found in the
7
+ * LICENSE.md file in the root directory of this source tree.
8
+ *
9
+ * @license MIT
10
+ */
11
+
12
+ // index.ts
13
+ import { HydratedRouter, RouterProvider } from "react-router/dom";
14
+ export * from "react-router";
15
+ export {
16
+ HydratedRouter,
17
+ RouterProvider
18
+ };
package/package.json ADDED
@@ -0,0 +1,95 @@
1
+ {
2
+ "name": "@depup/react-router-dom",
3
+ "version": "7.13.1-depup.0",
4
+ "description": "[DepUp] Declarative routing for React web applications",
5
+ "keywords": [
6
+ "depup",
7
+ "dependency-bumped",
8
+ "updated-deps",
9
+ "react-router-dom",
10
+ "react",
11
+ "router",
12
+ "route",
13
+ "routing",
14
+ "history",
15
+ "link"
16
+ ],
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/remix-run/react-router",
20
+ "directory": "packages/react-router-dom"
21
+ },
22
+ "license": "MIT",
23
+ "author": "Remix Software <hello@remix.run>",
24
+ "sideEffects": false,
25
+ "main": "./dist/main.js",
26
+ "unpkg": "./dist/umd/react-router-dom.production.min.js",
27
+ "module": "./dist/index.mjs",
28
+ "types": "./dist/index.d.ts",
29
+ "exports": {
30
+ ".": {
31
+ "node": {
32
+ "types": "./dist/index.d.ts",
33
+ "module-sync": "./dist/index.mjs",
34
+ "default": "./dist/index.js"
35
+ },
36
+ "import": {
37
+ "types": "./dist/index.d.mts",
38
+ "default": "./dist/index.mjs"
39
+ },
40
+ "default": {
41
+ "types": "./dist/index.d.ts",
42
+ "default": "./dist/index.js"
43
+ }
44
+ },
45
+ "./package.json": "./package.json"
46
+ },
47
+ "wireit": {
48
+ "build": {
49
+ "command": "tsup",
50
+ "files": [
51
+ "../../pnpm-workspace.yaml",
52
+ "*.ts",
53
+ "tsconfig.json",
54
+ "package.json"
55
+ ],
56
+ "output": [
57
+ "dist/**"
58
+ ]
59
+ }
60
+ },
61
+ "dependencies": {
62
+ "react-router": "7.13.1"
63
+ },
64
+ "devDependencies": {
65
+ "react": "^19.2.3",
66
+ "react-dom": "^19.2.3",
67
+ "tsup": "^8.3.0",
68
+ "typescript": "^5.4.5",
69
+ "wireit": "0.14.9"
70
+ },
71
+ "peerDependencies": {
72
+ "react": ">=18",
73
+ "react-dom": ">=18"
74
+ },
75
+ "files": [
76
+ "dist/",
77
+ "LICENSE.md",
78
+ "README.md"
79
+ ],
80
+ "engines": {
81
+ "node": ">=20.0.0"
82
+ },
83
+ "scripts": {
84
+ "build": "wireit",
85
+ "typecheck": "tsc"
86
+ },
87
+ "depup": {
88
+ "changes": {},
89
+ "depsUpdated": 0,
90
+ "originalPackage": "react-router-dom",
91
+ "originalVersion": "7.13.1",
92
+ "processedAt": "2026-03-09T03:59:22.191Z",
93
+ "smokeTest": "passed"
94
+ }
95
+ }