notifyme-csm-mcp 1.0.4 → 1.0.5
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 +3 -2
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "notifyme-csm-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "NotifyMe CSM — MCP server for LLM integrations (Claude Code, Cursor, etc.)",
|
|
5
|
+
"_versionPolicy": "The version field above is a placeholder and is NEVER updated in git. The real published version lives only on npm — run `npm view notifyme-csm-mcp version` to check. To publish a new release, use the GitHub workflow `Publish MCP` (Actions tab → Publish notifyme-csm-mcp → Run workflow). This prevents recurring merge conflicts across feature/dev/main branches that used to plague every PR.",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"main": "dist/index.js",
|
|
7
8
|
"bin": {
|
|
@@ -17,7 +18,7 @@
|
|
|
17
18
|
"build": "tsc",
|
|
18
19
|
"dev": "tsx src/index.ts",
|
|
19
20
|
"start": "node dist/index.js",
|
|
20
|
-
"prepublishOnly": "npm run build"
|
|
21
|
+
"prepublishOnly": "node -e \"const v=require('./package.json').version; if(v==='0.0.0-managed'){console.error('\\n❌ Refusing to publish placeholder version 0.0.0-managed.\\n Use the GitHub workflow: Actions → Publish notifyme-csm-mcp → Run workflow.\\n It will set the real version automatically.\\n'); process.exit(1)}\" && npm run build"
|
|
21
22
|
},
|
|
22
23
|
"dependencies": {
|
|
23
24
|
"@modelcontextprotocol/sdk": "^1.29.0",
|