package.json•1.18 kB
{
"name": "@scenic/mcp-server",
"version": "0.2.0",
"description": "MCP (Model Context Protocol) server for Scenic Elixir applications",
"main": "dist/index.js",
"type": "module",
"bin": {
"scenic-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"bundle": "tsc && mkdir -p priv/mcp_server && cp dist/* priv/mcp_server/",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:elixir": "mix test",
"test:all": "npm run test && npm run test:elixir",
"test:llm-tools": "cd test/tools/llm && node run_llm_tool_tests.js",
"test:enhance": "cd test/tools/enhancements && node apply_enhanced_descriptions.js"
},
"keywords": ["mcp", "scenic", "elixir", "automation"],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
},
"files": ["dist", "README.md"],
"engines": {
"node": ">=18.0.0"
}
}