package.json•1.06 kB
{
"name": "sonic-pi-mcp",
"version": "0.2.0",
"module": "src/server.ts",
"type": "module",
"description": "Model Context Protocol server for Sonic Pi",
"author": "Abhishek Jairath",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/abhishekjairath/sonic-pi-mcp.git"
},
"keywords": [
"mcp",
"sonic-pi",
"ai",
"llm",
"music",
"claude"
],
"bin": {
"sonic-pi-mcp": "src/server.ts"
},
"scripts": {
"dev": "bun run src/server.ts",
"build": "bun build src/server.ts --outdir dist",
"docker:build": "docker-compose build",
"docker:up": "docker-compose up",
"docker:test": "docker-compose run sonic-pi-mcp bun run test",
"test": "bun run src/test.ts"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^20.11.24",
"@types/node-osc": "^9.1.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.0",
"node-osc": "^8.0.12",
"zod": "^3.22.4"
}
}