-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@uehaj/mcp-notifier",
"version": "1.3.3",
"description": "MCP server for desktop notifications",
"type": "module",
"scripts": {
"build": "tsc && chmod +x build/index.js",
"start": "node build/index.js",
"test": "node tests/run-tests.js",
"test:basic": "node tests/test-notify.js",
"test:advanced": "node tests/test-advanced-notify.js",
"prepublishOnly": "npm run build",
"release": "npm publish --access public",
"release:patch": "npm version patch && npm publish --access public",
"release:minor": "npm version minor && npm publish --access public",
"release:major": "npm version major && npm publish --access public"
},
"main": "build/index.js",
"bin": {
"mcp-notifier": "bin/mcp-notifier.js"
},
"files": [
"build",
"assets",
"bin"
],
"keywords": [
"mcp",
"node-notifier",
"notifications",
"claude",
"model-context-protocol"
],
"author": "uehaj",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/uehaj/mcp-notifier.git"
},
"bugs": {
"url": "https://github.com/uehaj/mcp-notifier/issues"
},
"homepage": "https://github.com/uehaj/mcp-notifier#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"node-notifier": "^10.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/node-notifier": "^8.0.5",
"typescript": "^5.3.3"
}
}