nestjs-profiler 1.0.17 → 1.0.18
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 -1
package/package.json
CHANGED
|
@@ -1,11 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nestjs-profiler",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.18",
|
|
4
4
|
"description": "A NestJS module for profiling HTTP requests, database queries, and cache operations. Inspired by Symfony Profiler, it provides a web-based dashboard to inspect request duration, executed queries, log messages, and explain plans for slow queries.",
|
|
5
5
|
"author": "Mohamed Raslan",
|
|
6
6
|
"main": "./index.js",
|
|
7
7
|
"types": "./index.d.ts",
|
|
8
8
|
"dependencies": {},
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"keywords": [
|
|
11
|
+
"nestjs",
|
|
12
|
+
"nestjs-profiler",
|
|
13
|
+
"performance",
|
|
14
|
+
"monitoring",
|
|
15
|
+
"debugging",
|
|
16
|
+
"backend",
|
|
17
|
+
"nodejs",
|
|
18
|
+
"telescope",
|
|
19
|
+
"profiler"
|
|
20
|
+
],
|
|
9
21
|
"exports": {
|
|
10
22
|
".": {
|
|
11
23
|
"types": "./index.d.ts",
|