The meteor packages cannot be imported without starting meteor (or meteor test). A.k.a. the following won't work.
import { Template } from 'meteor/templating';
Is there a way for this to work? My specific example is by running tests without the standard Meteor test commands, because I don't want to spin up all of Meteor (or a major subset of it) just to run tests that require its modules. Alternatively, is there a way to see if this is on the radar for the Meteor Development Group? Is there a way to build this or shim it or somehow get it working?