Another #OfflineCapable #LocalFirst hack is to use ESM so you can import locally using the same source that pushes out the NPM published modules. For instance:
```
//import { model_to_dots } from "text-model-dot";
import { model_to_dots } from "../text-model-dot.js";
```
Test your whole toolchain.