@real-router/core 0.46.0 → 0.47.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 (1) hide show
  1. package/package.json +9 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@real-router/core",
3
- "version": "0.46.0",
3
+ "version": "0.47.0",
4
4
  "type": "commonjs",
5
5
  "description": "A simple, powerful, view-agnostic, modular and extensible router",
6
6
  "main": "./dist/cjs/index.js",
@@ -21,6 +21,7 @@
21
21
  },
22
22
  "exports": {
23
23
  ".": {
24
+ "@real-router/internal-source": "./src/index.ts",
24
25
  "types": {
25
26
  "import": "./dist/esm/index.d.mts",
26
27
  "require": "./dist/cjs/index.d.ts"
@@ -29,6 +30,7 @@
29
30
  "require": "./dist/cjs/index.js"
30
31
  },
31
32
  "./api": {
33
+ "@real-router/internal-source": "./src/api/index.ts",
32
34
  "types": {
33
35
  "import": "./dist/esm/api.d.mts",
34
36
  "require": "./dist/cjs/api.d.ts"
@@ -37,6 +39,7 @@
37
39
  "require": "./dist/cjs/api.js"
38
40
  },
39
41
  "./utils": {
42
+ "@real-router/internal-source": "./src/utils/index.ts",
40
43
  "types": {
41
44
  "import": "./dist/esm/utils.d.mts",
42
45
  "require": "./dist/cjs/utils.d.ts"
@@ -45,6 +48,7 @@
45
48
  "require": "./dist/cjs/utils.js"
46
49
  },
47
50
  "./validation": {
51
+ "@real-router/internal-source": "./src/validation.ts",
48
52
  "types": {
49
53
  "import": "./dist/esm/validation.d.mts",
50
54
  "require": "./dist/cjs/validation.d.ts"
@@ -83,9 +87,9 @@
83
87
  "homepage": "https://github.com/greydragon888/real-router",
84
88
  "sideEffects": false,
85
89
  "dependencies": {
86
- "@real-router/fsm": "^0.3.0",
87
- "@real-router/logger": "^0.2.3",
88
- "@real-router/types": "^0.32.0"
90
+ "@real-router/fsm": "^0.4.0",
91
+ "@real-router/logger": "^0.3.0",
92
+ "@real-router/types": "^0.33.0"
89
93
  },
90
94
  "devDependencies": {
91
95
  "event-emitter": "^0.1.2",
@@ -102,7 +106,6 @@
102
106
  "type-check": "tsc --noEmit",
103
107
  "lint": "eslint --cache --ext .ts src/ tests/ --fix --max-warnings 0",
104
108
  "lint:package": "publint",
105
- "lint:types": "attw --pack .",
106
- "build:dist-only": "tsdown --config-loader unrun"
109
+ "lint:types": "attw --pack ."
107
110
  }
108
111
  }