A typical node package consists of package.json, package-lock.json and some source files.
We want to use this package format for all Mixery addons. Basically, you can use npm pack, put it into Mixery DAW and it will automatically unpack, build TypeScript sources (if needed) and run as an addon.
But first, I need to find a way to "link" @mixery/* imports to Mixery namespace (which will be available in globalThis).
A typical node package consists of
package.json,package-lock.jsonand some source files.We want to use this package format for all Mixery addons. Basically, you can use
npm pack, put it into Mixery DAW and it will automatically unpack, build TypeScript sources (if needed) and run as an addon.But first, I need to find a way to "link"
@mixery/*imports toMixerynamespace (which will be available inglobalThis).