Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
215 changes: 144 additions & 71 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"url": "git@github.com:htilly/SlackONOS.git"
},
"devDependencies": {
"c8": "^10.1.3",
"c8": "^11.0.0",
"chai": "6.2.2",
"mocha": "^11.7.5",
Comment on lines 28 to 31
Copy link

Copilot AI Mar 4, 2026

Choose a reason for hiding this comment

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

c8@^11.0.0 requires Node 20 || >=22 (per its published engines). With package.json currently declaring engines.node >=17, developers may try running coverage on unsupported Node versions and hit install/runtime issues. Consider updating the project's Node engine range to match the strictest dependency requirement.

Copilot uses AI. Check for mistakes.
"sinon": "^21.0.1"
Expand All @@ -49,7 +49,7 @@
"posthog-node": "^5.24.9",
"selfsigned": "^5.5.0",
"sonos": "^1.14.2",
"soundcraft-ui-connection": "^4.1.1",
"soundcraft-ui-connection": "^5.0.0",
"urlencode": "^2.0.0",
Comment on lines 51 to 53
Copy link

Copilot AI Mar 4, 2026

Choose a reason for hiding this comment

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

soundcraft-ui-connection@^5.0.0 declares engines.node >=22 (see lockfile), but the project package.json still advertises engines.node >=17 and CI currently runs tests on Node 20. Since index.js requires the Soundcraft handler at startup, this dependency bump effectively raises the minimum supported Node version and may break installs/runs on Node <22. Please either bump the project's Node engine (and align CI/Docker/docs), or keep soundcraft-ui-connection on v4 / make the Soundcraft integration an optional/conditional dependency so the app can still run on older Node versions.

Copilot uses AI. Check for mistakes.
"winston": "^3.18.3",
"xml2js": "^0.6.2"
Expand Down
Loading