🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@topvisor/mcp-notifications

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@topvisor/mcp-notifications - npm Package Compare versions

Comparing version
1.0.4
to
1.0.5
+2
-2
package.json
{
"name": "@topvisor/mcp-notifications",
"version": "1.0.4",
"version": "1.0.5",
"mcpName": "io.github.topvisor/mcp-notifications",

@@ -35,3 +35,3 @@ "type": "module",

"scripts": {
"test": "vitest run",
"publish": "npm publish --access public",
"start": "node ./src/server.mjs",

@@ -38,0 +38,0 @@ "start:bin": "node ./bin/mcp-notifications.mjs"

@@ -152,5 +152,4 @@ # mcp-notifications

- `auto` (default): uses `powershell` in WSL if available, then `wsl-notify-send`, otherwise `node-notifier`
- `auto` (default): uses `powershell` in WSL if available, otherwise `node-notifier`
- `powershell`: force `powershell.exe` Windows toast transport (recommended for WSL)
- `wsl-notify-send`: force `wsl-notify-send` command
- `node-notifier`: force `node-notifier` package

@@ -157,0 +156,0 @@

import path from 'node:path'
import os from 'node:os'

@@ -19,2 +20,2 @@ // Преобразует пути WSL (/mnt/c/...) в Windows-формат (C:\...).

process.platform === 'linux' &&
(Boolean(process.env.WSL_DISTRO_NAME) || process.env.WSL_INTEROP !== undefined)
os.release().toLowerCase().includes('microsoft')