@adobe/uxp-template-default-starter-ps
Version:
Default template for creating Adobe UXP based photoshop plugin.
51 lines (50 loc) • 1.26 kB
JSON
{
"id": "com.adobe.sample",
"name": "Sample plugin",
"version": "1.0",
"host": [
{
"app": "PS",
"minVersion": "22.0.0"
}
],
"main": "index.html",
"manifestVersion": 4,
"entrypoints": [
{
"type": "panel",
"id": "vanilla",
"label": {
"default": "My Network panel",
"en-US": "My Network panel",
"es-ES": "My Network panel"
},
"minimumSize": {
"width": 120,
"height": 140
},
"maximumSize": {
"width": 1200,
"height": 10000
},
"preferredDockedSize": {
"width": 150,
"height": 200
},
"preferredFloatingSize": {
"width": 300,
"height": 200
},
"commands": [
{
"id": "show_alert",
"label": {
"default": "Show Alert",
"en-US": "Show Alert (US)",
"es-ES": "Show Alert (ES)"
}
}
]
}
]
}