@os.io/nest-kit 0.0.2 → 0.0.3-alpha.1
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/README.md +1 -0
- package/package.json +11 -1
package/README.md
CHANGED
|
@@ -57,6 +57,7 @@
|
|
|
57
57
|
| `@os.io/nest-kit/infra/stripe` | Webhooks, subscriptions, checkout |
|
|
58
58
|
| `@os.io/nest-kit/infra/audit-log` | Audit trails, data change capture |
|
|
59
59
|
| `@os.io/nest-kit/infra/metrics` | Prometheus, OpenTelemetry, health checks |
|
|
60
|
+
| `@os.io/nest-kit/infra/excel` | Export arrays of objects to .xlsx |
|
|
60
61
|
|
|
61
62
|
## 📦 Installation
|
|
62
63
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@os.io/nest-kit",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3-alpha.1",
|
|
4
4
|
"description": "A modular, production-ready NestJS toolkit — Bootstrap, Auth, SaaS, and Infra integrations in a single package.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"nestjs",
|
|
@@ -110,6 +110,11 @@
|
|
|
110
110
|
"types": "./dist/infra/metrics/index.d.ts",
|
|
111
111
|
"import": "./dist/infra/metrics/index.js",
|
|
112
112
|
"require": "./dist/infra/metrics/index.js"
|
|
113
|
+
},
|
|
114
|
+
"./infra/excel": {
|
|
115
|
+
"types": "./dist/infra/excel/index.d.ts",
|
|
116
|
+
"import": "./dist/infra/excel/index.js",
|
|
117
|
+
"require": "./dist/infra/excel/index.js"
|
|
113
118
|
}
|
|
114
119
|
},
|
|
115
120
|
"files": [
|
|
@@ -149,6 +154,7 @@
|
|
|
149
154
|
"cacheable": "^1.0.0",
|
|
150
155
|
"keyv": "^5.0.0",
|
|
151
156
|
"otpauth": "^9.0.0",
|
|
157
|
+
"exceljs": "^4.4.0",
|
|
152
158
|
"typeorm": "^1.0.0"
|
|
153
159
|
},
|
|
154
160
|
"peerDependenciesMeta": {
|
|
@@ -196,6 +202,9 @@
|
|
|
196
202
|
},
|
|
197
203
|
"typeorm": {
|
|
198
204
|
"optional": true
|
|
205
|
+
},
|
|
206
|
+
"exceljs": {
|
|
207
|
+
"optional": true
|
|
199
208
|
}
|
|
200
209
|
},
|
|
201
210
|
"publishConfig": {
|
|
@@ -245,6 +254,7 @@
|
|
|
245
254
|
"eslint": "^9.18.0",
|
|
246
255
|
"eslint-config-prettier": "^10.0.1",
|
|
247
256
|
"eslint-plugin-prettier": "^5.2.2",
|
|
257
|
+
"exceljs": "^4.4.0",
|
|
248
258
|
"globals": "^16.0.0",
|
|
249
259
|
"husky": "^9.1.0",
|
|
250
260
|
"jest": "^30.0.0",
|