├── Archetype.sketchplugin └── Contents │ ├── Resources │ ├── Archetype.bundle │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── Archetype │ │ │ └── Resources │ │ │ ├── ArchetypeHTML.html │ │ │ ├── ArchetypeJS.js │ │ │ ├── Editor │ │ │ ├── codemirror.css │ │ │ ├── codemirror.js │ │ │ ├── css.js │ │ │ └── editor.html │ │ │ └── MCCSSEditPanelController.nib │ └── MCSketchBundleLoaderFramework.framework │ │ ├── Headers │ │ └── MCSketchBundleLoaderFramework.h │ │ ├── MCSketchBundleLoaderFramework │ │ ├── Modules │ │ └── module.modulemap │ │ ├── Resources │ │ └── Info.plist │ │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ └── MCSketchBundleLoaderFramework.h │ │ ├── MCSketchBundleLoaderFramework │ │ ├── Modules │ │ │ └── module.modulemap │ │ └── Resources │ │ │ └── Info.plist │ │ └── Current │ │ ├── Headers │ │ └── MCSketchBundleLoaderFramework.h │ │ ├── MCSketchBundleLoaderFramework │ │ ├── Modules │ │ └── module.modulemap │ │ └── Resources │ │ └── Info.plist │ └── Sketch │ ├── SketchLibrary.js │ ├── commands.js │ ├── dynamicCommands.js │ ├── main.js │ └── manifest.json ├── Demo.gif ├── Map Demo.css ├── Map Demo.sketch └── README.md /Archetype.sketchplugin/Contents/Resources/Archetype.bundle/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Resources/Archetype.bundle/Contents/Info.plist -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Resources/Archetype.bundle/Contents/MacOS/Archetype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Resources/Archetype.bundle/Contents/MacOS/Archetype -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Resources/Archetype.bundle/Contents/Resources/ArchetypeHTML.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Resources/Archetype.bundle/Contents/Resources/ArchetypeHTML.html -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Resources/Archetype.bundle/Contents/Resources/ArchetypeJS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Resources/Archetype.bundle/Contents/Resources/ArchetypeJS.js -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Resources/Archetype.bundle/Contents/Resources/Editor/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Resources/Archetype.bundle/Contents/Resources/Editor/codemirror.css -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Resources/Archetype.bundle/Contents/Resources/Editor/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Resources/Archetype.bundle/Contents/Resources/Editor/codemirror.js -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Resources/Archetype.bundle/Contents/Resources/Editor/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Resources/Archetype.bundle/Contents/Resources/Editor/css.js -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Resources/Archetype.bundle/Contents/Resources/Editor/editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Resources/Archetype.bundle/Contents/Resources/Editor/editor.html -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Resources/Archetype.bundle/Contents/Resources/MCCSSEditPanelController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Resources/Archetype.bundle/Contents/Resources/MCCSSEditPanelController.nib -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Resources/MCSketchBundleLoaderFramework.framework/Headers/MCSketchBundleLoaderFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Resources/MCSketchBundleLoaderFramework.framework/Headers/MCSketchBundleLoaderFramework.h -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Resources/MCSketchBundleLoaderFramework.framework/MCSketchBundleLoaderFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Resources/MCSketchBundleLoaderFramework.framework/MCSketchBundleLoaderFramework -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Resources/MCSketchBundleLoaderFramework.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Resources/MCSketchBundleLoaderFramework.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Resources/MCSketchBundleLoaderFramework.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Resources/MCSketchBundleLoaderFramework.framework/Resources/Info.plist -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Resources/MCSketchBundleLoaderFramework.framework/Versions/A/Headers/MCSketchBundleLoaderFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Resources/MCSketchBundleLoaderFramework.framework/Versions/A/Headers/MCSketchBundleLoaderFramework.h -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Resources/MCSketchBundleLoaderFramework.framework/Versions/A/MCSketchBundleLoaderFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Resources/MCSketchBundleLoaderFramework.framework/Versions/A/MCSketchBundleLoaderFramework -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Resources/MCSketchBundleLoaderFramework.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Resources/MCSketchBundleLoaderFramework.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Resources/MCSketchBundleLoaderFramework.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Resources/MCSketchBundleLoaderFramework.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Resources/MCSketchBundleLoaderFramework.framework/Versions/Current/Headers/MCSketchBundleLoaderFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Resources/MCSketchBundleLoaderFramework.framework/Versions/Current/Headers/MCSketchBundleLoaderFramework.h -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Resources/MCSketchBundleLoaderFramework.framework/Versions/Current/MCSketchBundleLoaderFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Resources/MCSketchBundleLoaderFramework.framework/Versions/Current/MCSketchBundleLoaderFramework -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Resources/MCSketchBundleLoaderFramework.framework/Versions/Current/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Resources/MCSketchBundleLoaderFramework.framework/Versions/Current/Modules/module.modulemap -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Resources/MCSketchBundleLoaderFramework.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Resources/MCSketchBundleLoaderFramework.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Sketch/SketchLibrary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Sketch/SketchLibrary.js -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Sketch/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Sketch/commands.js -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Sketch/dynamicCommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Sketch/dynamicCommands.js -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Sketch/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Sketch/main.js -------------------------------------------------------------------------------- /Archetype.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Archetype.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Demo.gif -------------------------------------------------------------------------------- /Map Demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Map Demo.css -------------------------------------------------------------------------------- /Map Demo.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/Map Demo.sketch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-curtis/Archetype/HEAD/README.md --------------------------------------------------------------------------------