@ovineko/spa-guard 0.0.1-alpha-13 → 0.0.1-alpha-14
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 +14 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ovineko/spa-guard",
|
|
3
|
-
"version": "0.0.1-alpha-
|
|
3
|
+
"version": "0.0.1-alpha-14",
|
|
4
4
|
"description": "Chunk load error handling for SPAs with automatic recovery, beacon reporting, and deployment monitoring",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"spa",
|
|
@@ -93,31 +93,40 @@
|
|
|
93
93
|
],
|
|
94
94
|
"dependencies": {
|
|
95
95
|
"@fastify/accept-negotiator": "2.0.1",
|
|
96
|
-
"
|
|
97
|
-
"eslint": "9.39.2",
|
|
98
|
-
"html-minifier-terser": "7.2.0",
|
|
99
|
-
"typebox": "1.1.1"
|
|
96
|
+
"html-minifier-terser": "7.2.0"
|
|
100
97
|
},
|
|
101
98
|
"peerDependencies": {
|
|
99
|
+
"eslint": "^9 || ^10",
|
|
102
100
|
"fastify": "^5 || ^4",
|
|
103
101
|
"fastify-plugin": "^5 || ^4",
|
|
102
|
+
"happy-dom": "^20",
|
|
104
103
|
"react": "^19",
|
|
105
104
|
"react-router": "^7",
|
|
105
|
+
"typebox": "^1",
|
|
106
106
|
"vite": "^8 || ^7"
|
|
107
107
|
},
|
|
108
108
|
"peerDependenciesMeta": {
|
|
109
|
+
"eslint": {
|
|
110
|
+
"optional": true
|
|
111
|
+
},
|
|
109
112
|
"fastify": {
|
|
110
113
|
"optional": true
|
|
111
114
|
},
|
|
112
115
|
"fastify-plugin": {
|
|
113
116
|
"optional": true
|
|
114
117
|
},
|
|
118
|
+
"happy-dom": {
|
|
119
|
+
"optional": true
|
|
120
|
+
},
|
|
115
121
|
"react": {
|
|
116
122
|
"optional": true
|
|
117
123
|
},
|
|
118
124
|
"react-router": {
|
|
119
125
|
"optional": true
|
|
120
126
|
},
|
|
127
|
+
"typebox": {
|
|
128
|
+
"optional": true
|
|
129
|
+
},
|
|
121
130
|
"vite": {
|
|
122
131
|
"optional": true
|
|
123
132
|
}
|