path-tree-matcher 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 +2 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  A tiny TypeScript path tree matcher for static routes, optional groups, named parameters, and wildcards.
4
4
 
5
+ 🎮 **[Try the Playground](https://ye-yu.github.io/ts-path-tree-matcher/)**
6
+
5
7
  ## Quick usage
6
8
 
7
9
  ```ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "path-tree-matcher",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Build and match path trees with parameters, wildcards, and optional route segments.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -22,7 +22,7 @@
22
22
  "bugs": {
23
23
  "url": "https://github.com/ye-yu/ts-path-tree-matcher/issues"
24
24
  },
25
- "homepage": "https://github.com/ye-yu/ts-path-tree-matcher#readme",
25
+ "homepage": "https://ye-yu.github.io/ts-path-tree-matcher/",
26
26
  "devDependencies": {
27
27
  "@types/node": "^22.19.19",
28
28
  "@typescript/native-preview": "^7.0.0-dev.20260511.1"