@noony-serverless/core 0.5.2 → 0.5.3
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 +15 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@noony-serverless/core",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.3",
|
|
4
4
|
"description": "A Middy base framework compatible with Firebase and GCP Cloud Functions with TypeScript",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@google-cloud/firestore": "^7.1.0",
|
|
45
|
-
"@google-cloud/functions-framework": "^
|
|
45
|
+
"@google-cloud/functions-framework": "^5.0.0",
|
|
46
46
|
"@google-cloud/pubsub": "^4.1.0",
|
|
47
47
|
"@types/jsonwebtoken": "^9.0.10",
|
|
48
48
|
"axios": "^1.11.0",
|
|
@@ -72,11 +72,10 @@
|
|
|
72
72
|
"typescript": "^5.3.3"
|
|
73
73
|
},
|
|
74
74
|
"peerDependencies": {
|
|
75
|
-
"@fastify/otel": "^1.0.0",
|
|
76
75
|
"@google-cloud/opentelemetry-cloud-trace-propagator": "^0.21.0",
|
|
77
76
|
"@opentelemetry/api": "^1.9.0",
|
|
78
77
|
"@opentelemetry/auto-instrumentations-node": "^0.200.0",
|
|
79
|
-
"@opentelemetry/core": "^
|
|
78
|
+
"@opentelemetry/core": "^2.0.0",
|
|
80
79
|
"@opentelemetry/exporter-metrics-otlp-http": "^0.205.0",
|
|
81
80
|
"@opentelemetry/exporter-trace-otlp-http": "^0.205.0",
|
|
82
81
|
"@opentelemetry/instrumentation-http": "^0.200.0",
|
|
@@ -117,9 +116,6 @@
|
|
|
117
116
|
"@opentelemetry/auto-instrumentations-node": {
|
|
118
117
|
"optional": true
|
|
119
118
|
},
|
|
120
|
-
"@fastify/otel": {
|
|
121
|
-
"optional": true
|
|
122
|
-
},
|
|
123
119
|
"newrelic": {
|
|
124
120
|
"optional": true
|
|
125
121
|
},
|
|
@@ -128,7 +124,18 @@
|
|
|
128
124
|
}
|
|
129
125
|
},
|
|
130
126
|
"private": false,
|
|
127
|
+
"overrides": {
|
|
128
|
+
"body-parser": "2.2.2"
|
|
129
|
+
},
|
|
131
130
|
"optionalDependencies": {
|
|
132
131
|
"@google-cloud/opentelemetry-cloud-trace-propagator": "^0.21.0"
|
|
133
|
-
}
|
|
132
|
+
},
|
|
133
|
+
"directories": {
|
|
134
|
+
"doc": "docs",
|
|
135
|
+
"example": "examples"
|
|
136
|
+
},
|
|
137
|
+
"bugs": {
|
|
138
|
+
"url": "https://github.com/noony-serverless/noony-core/issues"
|
|
139
|
+
},
|
|
140
|
+
"homepage": "https://github.com/noony-serverless/noony-core#readme"
|
|
134
141
|
}
|