UNPKG

sketch-extract-text

Version:

A Sketch plugin to extract text from layers that match a regular expression

50 lines (49 loc) 1.13 kB
{ "name": "sketch-extract-text", "version": "0.7.0", "description": "A Sketch plugin to extract text from layers that match a regular expression", "keywords": [ "plugin", "sketch", "sketch-plugin-helper" ], "license": "MIT", "author": "Lim Yuan Qing", "repository": "yuanqing/sketch-extract-text", "files": [ "src" ], "scripts": { "build": "sketch build", "fix": "sketch lint --fix", "handler": "sketch handler", "lint": "sketch lint", "script": "sketch script", "symlink": "sketch symlink", "test": "sketch test", "unlink": "sketch symlink --delete", "version": "sketch version", "watch": "sketch build --watch" }, "devDependencies": { "sketch-plugin-helper": "*" }, "sketch-plugin-helper": { "name": "Extract Text", "menu": [ { "handler": "extract-text", "name": "Extract Text" }, "-", { "handler": "reset-settings", "name": "Reset Settings" } ], "defaultSettings": { "matchType": "Match layer content", "regularExpression": "^Remark" } } }