lifecycleion 0.0.18 → 0.0.19
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 -1
- package/dist/lib/dev-mode.cjs.map +1 -1
- package/dist/lib/dev-mode.js.map +1 -1
- package/dist/lib/lifecycle-manager/index.cjs.map +1 -1
- package/dist/lib/lifecycle-manager/index.js.map +1 -1
- package/dist/lib/logger/index.cjs.map +1 -1
- package/dist/lib/logger/index.js.map +1 -1
- package/package.json +19 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lifecycleion",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.19",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A collection of foundational TypeScript utilities for managing application lifecycle, logging, retries, events, and common programming patterns",
|
|
6
6
|
"exports": {
|
|
@@ -228,40 +228,44 @@
|
|
|
228
228
|
"type": "git",
|
|
229
229
|
"url": "https://github.com/keverw/lifecycleion"
|
|
230
230
|
},
|
|
231
|
+
"overrides": {
|
|
232
|
+
"brace-expansion": "5.0.8",
|
|
233
|
+
"esbuild": "0.28.1"
|
|
234
|
+
},
|
|
231
235
|
"devDependencies": {
|
|
232
|
-
"@eslint/js": "^9.39.
|
|
233
|
-
"@playwright/test": "^1.
|
|
236
|
+
"@eslint/js": "^9.39.5",
|
|
237
|
+
"@playwright/test": "^1.62.0",
|
|
234
238
|
"@types/bun": "^1.3.14",
|
|
235
|
-
"@types/node": "^24.13.
|
|
239
|
+
"@types/node": "^24.13.3",
|
|
236
240
|
"@types/qs": "^6.15.1",
|
|
237
241
|
"@types/tr46": "^5.0.1",
|
|
238
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
239
|
-
"@typescript-eslint/parser": "^8.
|
|
240
|
-
"eslint": "^9.39.
|
|
242
|
+
"@typescript-eslint/eslint-plugin": "^8.65.0",
|
|
243
|
+
"@typescript-eslint/parser": "^8.65.0",
|
|
244
|
+
"eslint": "^9.39.5",
|
|
241
245
|
"eslint-import-resolver-typescript": "^4.4.5",
|
|
242
|
-
"eslint-plugin-check-file": "^3.3.
|
|
246
|
+
"eslint-plugin-check-file": "^3.3.2",
|
|
243
247
|
"eslint-plugin-import": "^2.32.0",
|
|
244
248
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
245
249
|
"eslint-plugin-react": "^7.37.5",
|
|
246
250
|
"eslint-plugin-react-hooks": "^7.1.1",
|
|
247
251
|
"eslint-plugin-unicorn": "^62.0.0",
|
|
248
252
|
"markdown-toc-gen": "^1.2.0",
|
|
249
|
-
"prettier": "^3.
|
|
253
|
+
"prettier": "^3.9.6",
|
|
250
254
|
"tsup": "^8.5.1",
|
|
251
255
|
"typescript": "^5.9.3",
|
|
252
|
-
"typescript-eslint": "^8.
|
|
256
|
+
"typescript-eslint": "^8.65.0"
|
|
253
257
|
},
|
|
254
258
|
"dependencies": {
|
|
255
259
|
"bson-objectid": "^2.0.4",
|
|
256
260
|
"chalk": "^5.6.2",
|
|
257
261
|
"datamask": "^1.0.0",
|
|
258
262
|
"date-fns": "^4.4.0",
|
|
259
|
-
"find-my-way": "^9.
|
|
260
|
-
"qs": "^6.15.
|
|
261
|
-
"string-width": "^8.2.
|
|
262
|
-
"tldts": "^7.4.
|
|
263
|
+
"find-my-way": "^9.7.0",
|
|
264
|
+
"qs": "^6.15.3",
|
|
265
|
+
"string-width": "^8.2.2",
|
|
266
|
+
"tldts": "^7.4.9",
|
|
263
267
|
"tr46": "^6.0.0",
|
|
264
268
|
"ulid": "^3.0.2",
|
|
265
|
-
"uuid": "^14.0.
|
|
269
|
+
"uuid": "^14.0.1"
|
|
266
270
|
}
|
|
267
271
|
}
|