mirror of
https://github.com/penpot/penpot-mcp.git
synced 2026-04-25 11:18:37 +00:00
28 lines
1.5 KiB
JSON
28 lines
1.5 KiB
JSON
{
|
|
"name": "penpot-mcp",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"scripts": {
|
|
"install:all": "concurrently --names \"COMMON,MCP-SERVER,PLUGIN\" --prefix-colors \"green,cyan,magenta\" \"npm --prefix common install\" \"npm --prefix mcp-server install\" \"npm --prefix penpot-plugin install\"",
|
|
"build:all": "concurrently --names \"COMMON,MCP-SERVER,PLUGIN\" --prefix-colors \"green,cyan,magenta\" --success first \"npm --prefix common install && npm --prefix common run build\" \"npm --prefix mcp-server run build\" \"npm --prefix penpot-plugin run build\"",
|
|
"start:all": "concurrently --names \"MCP-SERVER,PLUGIN-SERVER\" --prefix-colors \"cyan,magenta\" --kill-others-on-fail \"npm --prefix mcp-server start\" \"npm --prefix penpot-plugin run dev\"",
|
|
"start:all-multi-user": "concurrently --names \"MCP-SERVER,PLUGIN-SERVER\" --prefix-colors \"cyan,magenta\" --kill-others-on-fail \"npm --prefix mcp-server run start:multi-user\" \"npm --prefix penpot-plugin run dev\"",
|
|
"bootstrap": "npm run install:all && npm run build:all && npm run start:all",
|
|
"bootstrap:multi-user": "npm run install:all && npm run build:all && npm run start:all-multi-user",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check ."
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/oraios/penpot-mcp.git"
|
|
},
|
|
"private": true,
|
|
"dependencies": {
|
|
"concurrently": "^8.2.2",
|
|
"kill-port": "^2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"prettier": "^3.0.0"
|
|
}
|
|
}
|