@athenna/http 3.4.3 → 3.4.4
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 +13 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@athenna/http",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.4",
|
|
4
4
|
"description": "The Athenna Http server. Built on top of fastify.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "João Lenon <lenon@athenna.io>",
|
|
@@ -42,6 +42,8 @@
|
|
|
42
42
|
"exports": {
|
|
43
43
|
".": "./src/index.js",
|
|
44
44
|
"./testing/plugins": "./src/Testing/Plugins/index.js",
|
|
45
|
+
"./kernels/HttpKernel": "./src/Kernels/HttpKernel.js",
|
|
46
|
+
"./handlers/HttpExceptionHandler": "./src/Handlers/HttpExceptionHandler.js",
|
|
45
47
|
"./providers/HttpRouteProvider": "./src/Providers/HttpRouteProvider.js",
|
|
46
48
|
"./providers/HttpServerProvider": "./src/Providers/HttpServerProvider.js",
|
|
47
49
|
"./commands/RouteListCommand": "./src/Commands/RouteListCommand.js",
|
|
@@ -62,13 +64,13 @@
|
|
|
62
64
|
"fastify": "^4.13.0"
|
|
63
65
|
},
|
|
64
66
|
"devDependencies": {
|
|
65
|
-
"@athenna/artisan": "^3.3.
|
|
66
|
-
"@athenna/common": "^3.4.
|
|
67
|
-
"@athenna/config": "^3.2.
|
|
67
|
+
"@athenna/artisan": "^3.3.8",
|
|
68
|
+
"@athenna/common": "^3.4.6",
|
|
69
|
+
"@athenna/config": "^3.2.5",
|
|
68
70
|
"@athenna/ioc": "^3.1.8",
|
|
69
71
|
"@athenna/logger": "^3.1.7",
|
|
70
72
|
"@athenna/test": "^3.2.3",
|
|
71
|
-
"@athenna/view": "^3.0.
|
|
73
|
+
"@athenna/view": "^3.0.7",
|
|
72
74
|
"@fastify/cors": "^8.1.1",
|
|
73
75
|
"@fastify/helmet": "^10.0.2",
|
|
74
76
|
"@fastify/rate-limit": "^7.5.0",
|
|
@@ -214,15 +216,12 @@
|
|
|
214
216
|
}
|
|
215
217
|
},
|
|
216
218
|
"athenna": {
|
|
217
|
-
"
|
|
218
|
-
"
|
|
219
|
-
"
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
"terminator": "./templates/terminator.edge",
|
|
224
|
-
"command": "@athenna/artisan/templates/command.edge"
|
|
225
|
-
}
|
|
219
|
+
"templates": {
|
|
220
|
+
"controller": "./templates/controller.edge",
|
|
221
|
+
"interceptor": "./templates/interceptor.edge",
|
|
222
|
+
"middleware": "./templates/middleware.edge",
|
|
223
|
+
"terminator": "./templates/terminator.edge",
|
|
224
|
+
"command": "@athenna/artisan/templates/command.edge"
|
|
226
225
|
},
|
|
227
226
|
"preloads": [],
|
|
228
227
|
"services": [],
|