@funstack/router 0.0.7-alpha.0 → 0.0.7
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.
|
@@ -15,6 +15,21 @@ pnpm add @funstack/router
|
|
|
15
15
|
yarn add @funstack/router`}</CodeBlock>
|
|
16
16
|
</section>
|
|
17
17
|
|
|
18
|
+
<section>
|
|
19
|
+
<h2>AI Coding Agent Support</h2>
|
|
20
|
+
<p>
|
|
21
|
+
<code>@funstack/router</code> ships with an Agent skill that gives
|
|
22
|
+
your coding assistant (Claude Code, Cursor, GitHub Copilot, etc.)
|
|
23
|
+
knowledge about the router's API and best practices. After installing
|
|
24
|
+
the package, run:
|
|
25
|
+
</p>
|
|
26
|
+
<CodeBlock language="bash">{`npx funstack-router-skill-installer`}</CodeBlock>
|
|
27
|
+
<p>
|
|
28
|
+
The installer will guide you through setting up the skill for your
|
|
29
|
+
preferred AI agent.
|
|
30
|
+
</p>
|
|
31
|
+
</section>
|
|
32
|
+
|
|
18
33
|
<section>
|
|
19
34
|
<h2>Browser Support</h2>
|
|
20
35
|
<p>
|
|
@@ -27,7 +42,7 @@ yarn add @funstack/router`}</CodeBlock>
|
|
|
27
42
|
Navigation API
|
|
28
43
|
</a>{" "}
|
|
29
44
|
which is supported in Chrome 102+, Edge 102+, Firefox 147+, Safari
|
|
30
|
-
26.2
|
|
45
|
+
26.2+.
|
|
31
46
|
</p>
|
|
32
47
|
</section>
|
|
33
48
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@funstack/router",
|
|
3
|
-
"version": "0.0.7
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "A modern React router based on the Navigation API",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@testing-library/jest-dom": "^6.9.1",
|
|
43
43
|
"@testing-library/react": "^16.3.2",
|
|
44
|
-
"@types/react": "^19.2.
|
|
45
|
-
"@types/node": "^
|
|
44
|
+
"@types/react": "^19.2.14",
|
|
45
|
+
"@types/node": "^25.2.3",
|
|
46
46
|
"jsdom": "^28.0.0",
|
|
47
47
|
"react": "^19.2.4",
|
|
48
|
-
"tsdown": "^0.20.
|
|
48
|
+
"tsdown": "^0.20.3",
|
|
49
49
|
"typescript": "^5.7.0",
|
|
50
50
|
"urlpattern-polyfill": "^10.1.0",
|
|
51
51
|
"vitest": "^4.0.18"
|