package.json•1.59 kB
{
"name": "macos-notify-mcp",
"version": "0.0.8",
"description": "MCP server for macOS notifications with tmux integration",
"keywords": [
"mcp",
"macos",
"notification",
"tmux",
"claude"
],
"author": "Yuki Yano",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yuki-yano/macos-notify-mcp.git"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"macos-notify-cli": "dist/cli-wrapper.cjs",
"macos-notify-mcp": "dist/mcp-wrapper.cjs"
},
"files": [
"dist",
"MacOSNotifyMCP"
],
"scripts": {
"build": "tsc",
"postbuild": "cp src/cli-wrapper.cjs dist/cli-wrapper.cjs && chmod +x dist/cli-wrapper.cjs && cp src/mcp-wrapper.cjs dist/mcp-wrapper.cjs && chmod +x dist/mcp-wrapper.cjs",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:watch": "vitest --watch",
"cli:test": "npm run build && node dist/cli.js --help",
"prepare": "npm run build",
"build-app": "cd MacOSNotifyMCP && ./build-app.sh",
"lint": "biome check --write",
"format": "biome format --write",
"check": "biome check"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@types/node": "^22.15.32",
"@vitest/coverage-v8": "^3.2.4",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
}
}