@os.io/nest-kit 0.0.1-alpha.2 → 0.0.1-alpha.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 +45 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@os.io/nest-kit",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.4",
|
|
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",
|
|
@@ -133,17 +133,53 @@
|
|
|
133
133
|
"docs:preview": "vitepress preview docs"
|
|
134
134
|
},
|
|
135
135
|
"peerDependencies": {
|
|
136
|
-
"@
|
|
137
|
-
"@
|
|
138
|
-
"@nestjs/
|
|
139
|
-
"@
|
|
136
|
+
"@keyv/redis": "^5.0.0",
|
|
137
|
+
"@keyv/valkey": "^4.0.0",
|
|
138
|
+
"@nestjs/cache-manager": "^2.0.0 || ^3.0.0",
|
|
139
|
+
"@nestjs/common": ">=10.0.0 <12.0.0",
|
|
140
|
+
"@nestjs/config": "^3.0.0 || ^4.0.0",
|
|
141
|
+
"@nestjs/core": ">=10.0.0 <12.0.0",
|
|
142
|
+
"@nestjs/swagger": ">=7.0.0 <12.0.0",
|
|
143
|
+
"@nestjs/typeorm": ">=10.0.0 <12.0.0",
|
|
144
|
+
"@scalar/nestjs-api-reference": "^1.2.6",
|
|
145
|
+
"typeorm": "^1.0.0",
|
|
146
|
+
"cache-manager": "^6.0.0",
|
|
147
|
+
"cacheable": "^1.0.0",
|
|
148
|
+
"keyv": "^5.0.0"
|
|
140
149
|
},
|
|
141
150
|
"peerDependenciesMeta": {
|
|
151
|
+
"@keyv/redis": {
|
|
152
|
+
"optional": true
|
|
153
|
+
},
|
|
154
|
+
"@keyv/valkey": {
|
|
155
|
+
"optional": true
|
|
156
|
+
},
|
|
157
|
+
"@nestjs/cache-manager": {
|
|
158
|
+
"optional": true
|
|
159
|
+
},
|
|
160
|
+
"@nestjs/config": {
|
|
161
|
+
"optional": true
|
|
162
|
+
},
|
|
142
163
|
"@nestjs/swagger": {
|
|
143
164
|
"optional": true
|
|
144
165
|
},
|
|
166
|
+
"@nestjs/typeorm": {
|
|
167
|
+
"optional": true
|
|
168
|
+
},
|
|
145
169
|
"@scalar/nestjs-api-reference": {
|
|
146
170
|
"optional": true
|
|
171
|
+
},
|
|
172
|
+
"cache-manager": {
|
|
173
|
+
"optional": true
|
|
174
|
+
},
|
|
175
|
+
"cacheable": {
|
|
176
|
+
"optional": true
|
|
177
|
+
},
|
|
178
|
+
"keyv": {
|
|
179
|
+
"optional": true
|
|
180
|
+
},
|
|
181
|
+
"typeorm": {
|
|
182
|
+
"optional": true
|
|
147
183
|
}
|
|
148
184
|
},
|
|
149
185
|
"publishConfig": {
|
|
@@ -178,12 +214,14 @@
|
|
|
178
214
|
"@eslint/eslintrc": "^3.2.0",
|
|
179
215
|
"@eslint/js": "^9.18.0",
|
|
180
216
|
"@nestjs/common": "^11.0.1",
|
|
217
|
+
"@nestjs/config": "^4.0.4",
|
|
181
218
|
"@nestjs/core": "^11.0.1",
|
|
182
219
|
"@nestjs/swagger": "^11.4.4",
|
|
183
220
|
"@nestjs/testing": "^11.0.1",
|
|
221
|
+
"@nestjs/typeorm": "^11.0.3",
|
|
184
222
|
"@scalar/nestjs-api-reference": "^1.2.6",
|
|
185
223
|
"@types/jest": "^30.0.0",
|
|
186
|
-
"@types/node": "^22.
|
|
224
|
+
"@types/node": "^22.20.0",
|
|
187
225
|
"eslint": "^9.18.0",
|
|
188
226
|
"eslint-config-prettier": "^10.0.1",
|
|
189
227
|
"eslint-plugin-prettier": "^5.2.2",
|
|
@@ -194,6 +232,7 @@
|
|
|
194
232
|
"reflect-metadata": "^0.2.2",
|
|
195
233
|
"rxjs": "^7.8.1",
|
|
196
234
|
"ts-jest": "^29.2.5",
|
|
235
|
+
"typeorm": "^1.0.0",
|
|
197
236
|
"typescript": "^5.7.3",
|
|
198
237
|
"typescript-eslint": "^8.20.0",
|
|
199
238
|
"vitepress": "^1.5.0"
|