@flightdev/router 0.4.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.
package/package.json ADDED
@@ -0,0 +1,95 @@
1
+ {
2
+ "name": "@flightdev/router",
3
+ "version": "0.4.0",
4
+ "description": "Agnostic client-side routing primitives for Flight Framework",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js"
13
+ },
14
+ "./react": {
15
+ "types": "./dist/react/index.d.ts",
16
+ "import": "./dist/react/index.js"
17
+ },
18
+ "./vue": {
19
+ "types": "./dist/vue/index.d.ts",
20
+ "import": "./dist/vue/index.js"
21
+ },
22
+ "./svelte": {
23
+ "types": "./dist/svelte/index.d.ts",
24
+ "import": "./dist/svelte/index.js"
25
+ },
26
+ "./solid": {
27
+ "types": "./dist/solid/index.d.ts",
28
+ "import": "./dist/solid/index.js"
29
+ },
30
+ "./preact": {
31
+ "types": "./dist/preact/index.d.ts",
32
+ "import": "./dist/preact/index.js"
33
+ }
34
+ },
35
+ "files": [
36
+ "dist",
37
+ "README.md"
38
+ ],
39
+ "keywords": [
40
+ "flight",
41
+ "router",
42
+ "spa",
43
+ "navigation",
44
+ "ssr",
45
+ "react",
46
+ "vue",
47
+ "svelte",
48
+ "solid",
49
+ "preact"
50
+ ],
51
+ "author": "Flight Framework",
52
+ "license": "MIT",
53
+ "repository": {
54
+ "type": "git",
55
+ "url": "https://github.com/EliosLT/Flight-framework",
56
+ "directory": "packages/router"
57
+ },
58
+ "devDependencies": {
59
+ "@types/react": "^19.0.0",
60
+ "@types/react-dom": "^19.0.0",
61
+ "preact": "^10.19.0",
62
+ "solid-js": "^1.8.0",
63
+ "tsup": "^8.0.0",
64
+ "typescript": "^5.3.0",
65
+ "vue": "^3.4.0"
66
+ },
67
+ "peerDependencies": {
68
+ "preact": ">=10.0.0",
69
+ "react": ">=18.0.0",
70
+ "solid-js": ">=1.0.0",
71
+ "svelte": ">=4.0.0",
72
+ "vue": ">=3.0.0"
73
+ },
74
+ "peerDependenciesMeta": {
75
+ "react": {
76
+ "optional": true
77
+ },
78
+ "vue": {
79
+ "optional": true
80
+ },
81
+ "svelte": {
82
+ "optional": true
83
+ },
84
+ "solid-js": {
85
+ "optional": true
86
+ },
87
+ "preact": {
88
+ "optional": true
89
+ }
90
+ },
91
+ "scripts": {
92
+ "build": "tsup",
93
+ "dev": "tsup --watch"
94
+ }
95
+ }