npm_pkg 0.1.0

Get npm package info
Documentation
1
2
3
4
5
6
7
8
9
const lib = require("../dist/index.cjs");

module.exports = lib.consola;

for (const key in lib) {
  if (!(key in module.exports)) {
    module.exports[key] = lib[key];
  }
}