penpot-mcp/penpot-plugin/package.json
Dominik Jain b7d1171654 Establish return channel when executing plugin tasks
and package 'common' for representations used in both subprojects
2025-09-12 16:42:13 +02:00

24 lines
617 B
JSON

{
"name": "penpot-plugin-starter-template",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite build --watch",
"build": "tsc && vite build",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@penpot/plugin-styles": "1.3.2",
"@penpot/plugin-types": "1.3.2",
"@penpot-mcp/common": "file:../common"
},
"devDependencies": {
"prettier": "^3.0.0",
"typescript": "^5.8.3",
"vite": "^7.0.5",
"vite-live-preview": "^0.3.2"
}
}