@xmachines/play-router 1.0.0 → 1.1.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.
Files changed (2) hide show
  1. package/README.md +3 -2
  2. package/package.json +10 -13
package/README.md CHANGED
@@ -1,9 +1,10 @@
1
- <!-- generated-by: gsd-doc-writer -->
2
-
3
1
  # @xmachines/play-router
4
2
 
5
3
  Route tree extraction from XState v5 state machines. Part of [@xmachines/play](../play/README.md) Universal Player Architecture.
6
4
 
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
+ [![Version](https://img.shields.io/badge/version-1.1.0-blue)](https://www.npmjs.com/package/@xmachines/play-router)
7
+
7
8
  Graph-based route extraction and bidirectional lookup enabling Actor Authority over navigation.
8
9
 
9
10
  Part of the [xmachines-js monorepo](../../README.md).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xmachines/play-router",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "Route tree extraction from XState v5 state machines. Part of @xmachines/play Universal Player Architecture.",
5
5
  "keywords": [
6
6
  "routing",
@@ -22,14 +22,13 @@
22
22
  "LICENSE"
23
23
  ],
24
24
  "type": "module",
25
+ "sideEffects": false,
25
26
  "exports": {
26
27
  ".": {
27
- "source": "./src/index.ts",
28
28
  "types": "./dist/index.d.ts",
29
29
  "import": "./dist/index.js"
30
30
  },
31
31
  "./errors": {
32
- "source": "./src/errors.ts",
33
32
  "types": "./dist/errors.d.ts",
34
33
  "import": "./dist/errors.js"
35
34
  }
@@ -42,26 +41,24 @@
42
41
  "clean": "rm -rf dist *.tsbuildinfo coverage .vitest-attachments test/browser/__screenshots__ node_modules/.svelte2tsx-* node_modules/.vite*",
43
42
  "lint": "oxlint .",
44
43
  "format": "oxfmt .",
45
- "test": "vitest",
46
- "prepublishOnly": "npm run build"
44
+ "test": "vitest"
47
45
  },
48
46
  "dependencies": {
49
47
  "@statelyai/graph": "^2.1.0",
50
- "@xmachines/play": "1.0.0",
51
- "@xmachines/play-actor": "1.0.0",
52
- "@xmachines/play-signals": "1.0.0",
48
+ "@xmachines/play": "1.1.0",
49
+ "@xmachines/play-actor": "1.1.0",
50
+ "@xmachines/play-signals": "1.1.0",
53
51
  "quick-lru": "^7.3.0"
54
52
  },
55
53
  "devDependencies": {
56
54
  "@testing-library/jest-dom": "^6.9.1",
57
- "@types/node": "^26.1.1",
55
+ "@types/node": "^26.2.0",
58
56
  "@vitest/browser-playwright": "^4.1.10",
59
- "@xmachines/shared": "1.0.0",
60
- "oxfmt": "^0.58.0",
61
- "oxlint": "^1.73.0",
57
+ "oxfmt": "^0.64.0",
58
+ "oxlint": "^1.79.0",
62
59
  "typescript": "^5.9.3 || ^6.0.3",
63
60
  "urlpattern-polyfill": "^10.1.0",
64
- "vitest": "^4.1.10",
61
+ "vitest": "^4.1.11",
65
62
  "xstate": "^5.31.0"
66
63
  },
67
64
  "peerDependencies": {