Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
"devDependencies": {
"@types/figlet": "^1.7.0",
"@types/gradient-string": "^1.1.6",
"@types/node": "^22.0.0",
"@types/node": "^25.5.0",
Copy link
Copy Markdown

@cubic-dev-ai cubic-dev-ai bot Mar 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: @types/node 25 types against Node 25 APIs, which is too new for a package that claims node >=18 support. This can mask accidental use of newer Node APIs that will break on older supported runtimes.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At package.json, line 72:

<comment>`@types/node` 25 types against Node 25 APIs, which is too new for a package that claims `node >=18` support. This can mask accidental use of newer Node APIs that will break on older supported runtimes.</comment>

<file context>
@@ -69,7 +69,7 @@
     "@types/figlet": "^1.7.0",
     "@types/gradient-string": "^1.1.6",
-    "@types/node": "^22.0.0",
+    "@types/node": "^25.5.0",
     "tsup": "^8.4.0",
     "typescript": "^5.7.0",
</file context>
Suggested change
"@types/node": "^25.5.0",
"@types/node": "^18.0.0",
Fix with Cubic

"tsup": "^8.4.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
Expand Down
Loading