package.json•713 B
{
"name": "excalidraw-mcp",
"version": "0.1.0",
"description": "MCP server for Excalidraw",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc-watch --onSuccess \"node dist/index.js\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"excalidraw",
"mcp",
"drawing"
],
"author": "",
"license": "MIT",
"dependencies": {
"@excalidraw/excalidraw": "^0.17.0",
"@modelcontextprotocol/sdk": "^1.6.1",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.3"
},
"devDependencies": {
"@types/node": "^20.10.5",
"typescript": "^5.3.3",
"tsc-watch": "^6.0.4"
}
}