Created
February 22, 2020 21:51
-
-
Save jodyheavener/00b198b1591e4b8c9d661690cce8ec86 to your computer and use it in GitHub Desktop.
An example DTPM manifest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "id": "dtpm-example", | |
| "name": "dtpm-example", | |
| "description": "This is an example plugin generated by the Design Tool Plugin Manager", | |
| "homepage": "https://www.example.com/", | |
| "version": "0.1.0", | |
| "icon": "assets/icon.png", | |
| "author": { | |
| "name": "John Doe", | |
| "email": "[email protected]" | |
| }, | |
| "platforms": [ | |
| "figma", | |
| "sketch", | |
| "xd" | |
| ], | |
| "commands": [ | |
| { | |
| "name": "First command", | |
| "handler": "firstCommand" | |
| }, | |
| { | |
| "name": "Second command", | |
| "handler": "secondCommand" | |
| } | |
| ], | |
| "manifests": { | |
| "sketch": { | |
| "custom-property": "Custom value" | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment