aaex-file-router 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  A file-based routing system for React projects that automatically generates routes from your file structure. Similar to Next.js App Router or Remix file conventions.
4
4
 
5
+ ## V. 1.0.1
6
+ Fixed issue that required --legacy-peer-deps flag for installation
7
+
8
+
5
9
  ## Features
6
10
 
7
11
  - **Automatic Route Generation**: Routes are generated based on your file and folder structure
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aaex-file-router",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A file-based routing system for React projects that automatically generates routes from your file structure. Similar to Next.js App Router or Remix file conventions.",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -31,8 +31,9 @@
31
31
  "fs": "^0.0.1-security"
32
32
  },
33
33
  "peerDependencies": {
34
- "react": "^18.0.0",
35
- "react-router-dom": "^6.0.0",
34
+ "react": "^19.2.0",
35
+ "react-dom": "^19.2.0",
36
+ "react-router-dom": "^7.9.6",
36
37
  "vite": "^4.0.0"
37
38
  }
38
39
  }