package.json•794 B
{
"name": "excalidraw-mcp",
"version": "0.1.0",
"description": "MCP server for Excalidraw",
"author": "Andre Silva",
"private": true,
"license": "Unlicense",
"main": "index.js",
"type": "module",
"scripts": {
"build": "rm -rf ./dist/* && tsc",
"start": "node dist/index.js",
"dev": "tsc-watch --onSuccess \"node dist/index.js\"",
"test": "npm run build && node ./test/test.js && node ./test/security-test.js"
},
"keywords": [
"excalidraw",
"mcp",
"drawing"
],
"dependencies": {
"@excalidraw/excalidraw": "^0.18.0",
"@modelcontextprotocol/sdk": "^1.20.0",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@types/node": "^24.7.2",
"typescript": "^5.9.3",
"tsc-watch": "^7.2.0"
}
}