Dart MCP Server

{ "name": "@egyleader/dart-mcp-server", "version": "1.0.2", "description": "MCP server for Dart SDK commands", "main": "dist/index.js", "type": "module", "bin": { "dart-mcp-server": "./dist/index.js" }, "scripts": { "build": "tsc", "start": "node dist/index.js", "dev": "tsc -w", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "prepublishOnly": "npm run build && npm run test" }, "files": [ "dist/**/*" ], "keywords": [ "dart", "mcp", "codium", "windsurf", "cli", "modelcontextprotocol" ], "author": "Ahmed Osama", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.6.1", "zod": "^3.24.2" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^22.13.9", "jest": "^29.7.0", "ts-jest": "^29.2.6", "typescript": "^5.8.2" }, "publishConfig": { "access": "public" }, "engines": { "node": ">=18.0.0" } }