Last active
April 19, 2017 14:05
-
-
Save julianburr/41c43c7a549a2415949f476059854aaf to your computer and use it in GitHub Desktop.
Medium - Example Sketch plugin manifest
This file contains 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
{ | |
"name": "Hello World", | |
"description": "Just an example for a Sketch plugin", | |
"author": "Julian Burr <[email protected]>", | |
"version": 1.0, | |
"identifier": "com.example.sketch.hello-world", | |
"bundleVersion": 1, | |
"commands": [ | |
{ | |
"name": "Hello World", | |
"identifier": "helloWorld", | |
"script": "plugin.js", | |
"handler": "helloWorld" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment