Anatomy of an extension
Get acknowledged with some rules which apply to any extension
Package.json
{
"mosaic": {
"type": "extension"
}
...
}File structure
βββ π node_modules
βββ π package.json
βββ π src
βββ ... # Any own logic of your extension here
βββ π plugin # Plugging logic here!
βββ π some.plugin.js
βββ π other.plugin.tsLast updated