- Update .gitignore to include additional build artifacts, logs, and editor files - Modify package.json scripts for improved development workflow and remove unused scripts - Change Vite output directory to 'dist' for consistency - Simplify App.jsx by removing unused state and functions, enhancing readability - Adjust server.js to serve static files from the new 'dist' directory
54 lines
1.1 KiB
JSON
54 lines
1.1 KiB
JSON
{
|
|
"name": "excalidraw-mcp",
|
|
"version": "1.0.0",
|
|
"description": "MCP server for Excalidraw",
|
|
"main": "src/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "node src/index.js",
|
|
"canvas": "node src/server.js",
|
|
"build": "vite build",
|
|
"dev": "concurrently \"npm run canvas\" \"vite\"",
|
|
"production": "npm run build && npm run canvas"
|
|
},
|
|
"dependencies": {
|
|
"@excalidraw/excalidraw": "^0.18.0",
|
|
"@modelcontextprotocol/sdk": "latest",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"node-fetch": "^3.3.2",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"winston": "^3.11.0",
|
|
"ws": "^8.14.2",
|
|
"zod": "^3.22.4",
|
|
"zod-to-json-schema": "^3.22.3"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-react": "^4.6.0",
|
|
"concurrently": "^9.2.0",
|
|
"vite": "^6.3.5"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"excalidraw",
|
|
"model-context-protocol",
|
|
"ai",
|
|
"drawing"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"files": [
|
|
"src/**/*",
|
|
"README.md",
|
|
"LICENSE"
|
|
]
|
|
}
|