@os.io/nest-kit 0.0.1 → 0.0.2-alpha.10
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 +25 -3
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.2-alpha.10",
|
|
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",
|
|
@@ -139,13 +139,17 @@
|
|
|
139
139
|
"@nestjs/common": ">=10.0.0 <12.0.0",
|
|
140
140
|
"@nestjs/config": "^3.0.0 || ^4.0.0",
|
|
141
141
|
"@nestjs/core": ">=10.0.0 <12.0.0",
|
|
142
|
+
"@nestjs/jwt": "^10.0.0 || ^11.0.0",
|
|
142
143
|
"@nestjs/swagger": ">=7.0.0 <12.0.0",
|
|
143
144
|
"@nestjs/typeorm": ">=10.0.0 <12.0.0",
|
|
144
145
|
"@scalar/nestjs-api-reference": "^1.2.6",
|
|
145
|
-
"
|
|
146
|
+
"@simplewebauthn/server": "^9.0.0 || ^10.0.0",
|
|
147
|
+
"bcrypt": "^5.1.0",
|
|
146
148
|
"cache-manager": "^6.0.0",
|
|
147
149
|
"cacheable": "^1.0.0",
|
|
148
|
-
"keyv": "^5.0.0"
|
|
150
|
+
"keyv": "^5.0.0",
|
|
151
|
+
"otpauth": "^9.0.0",
|
|
152
|
+
"typeorm": "^1.0.0"
|
|
149
153
|
},
|
|
150
154
|
"peerDependenciesMeta": {
|
|
151
155
|
"@keyv/redis": {
|
|
@@ -178,6 +182,18 @@
|
|
|
178
182
|
"keyv": {
|
|
179
183
|
"optional": true
|
|
180
184
|
},
|
|
185
|
+
"@nestjs/jwt": {
|
|
186
|
+
"optional": true
|
|
187
|
+
},
|
|
188
|
+
"bcrypt": {
|
|
189
|
+
"optional": true
|
|
190
|
+
},
|
|
191
|
+
"otpauth": {
|
|
192
|
+
"optional": true
|
|
193
|
+
},
|
|
194
|
+
"@simplewebauthn/server": {
|
|
195
|
+
"optional": true
|
|
196
|
+
},
|
|
181
197
|
"typeorm": {
|
|
182
198
|
"optional": true
|
|
183
199
|
}
|
|
@@ -216,18 +232,24 @@
|
|
|
216
232
|
"@nestjs/common": "^11.0.1",
|
|
217
233
|
"@nestjs/config": "^4.0.4",
|
|
218
234
|
"@nestjs/core": "^11.0.1",
|
|
235
|
+
"@nestjs/jwt": "^11.0.2",
|
|
219
236
|
"@nestjs/swagger": "^11.4.4",
|
|
220
237
|
"@nestjs/testing": "^11.0.1",
|
|
221
238
|
"@nestjs/typeorm": "^11.0.3",
|
|
222
239
|
"@scalar/nestjs-api-reference": "^1.2.6",
|
|
240
|
+
"@simplewebauthn/server": "^13.3.2",
|
|
241
|
+
"@types/bcrypt": "^6.0.0",
|
|
223
242
|
"@types/jest": "^30.0.0",
|
|
224
243
|
"@types/node": "^22.20.0",
|
|
244
|
+
"bcrypt": "^5.1.0",
|
|
225
245
|
"eslint": "^9.18.0",
|
|
226
246
|
"eslint-config-prettier": "^10.0.1",
|
|
227
247
|
"eslint-plugin-prettier": "^5.2.2",
|
|
228
248
|
"globals": "^16.0.0",
|
|
229
249
|
"husky": "^9.1.0",
|
|
230
250
|
"jest": "^30.0.0",
|
|
251
|
+
"otpauth": "^9.5.1",
|
|
252
|
+
"otplib": "^13.4.1",
|
|
231
253
|
"prettier": "^3.4.2",
|
|
232
254
|
"reflect-metadata": "^0.2.2",
|
|
233
255
|
"rxjs": "^7.8.1",
|