package.json•923 B
{
"name": "mcp-make-sound",
"version": "1.0.0",
"description": "MCP server for making system sounds on macOS",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch & node --watch dist/index.js",
"kill": "pkill -f mcp-make-sound",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui"
},
"keywords": [
"mcp",
"sound",
"macos",
"audio"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"@vitest/ui": "^3.2.3",
"eslint": "^9.28.0",
"typescript": "^5.0.0",
"vitest": "^3.2.3"
}
}