{
"name": "mcp-painter",
"version": "1.0.0",
"bin": {
"mcp-painter": "dist/index.js"
},
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch"
},
"author": "",
"license": "ISC",
"description": "A drawing tool for Model Context Protocol",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"pngjs": "^7.0.0"
},
"devDependencies": {
"@types/pngjs": "^6.0.5",
"shx": "^0.4.0",
"typescript": "^5.8.2"
},
"main": "dist/index.js",
"engines": {
"node": ">=16"
}
}