@heiwa4126/hello5
Version:
TypeScript hello world library with dual ES modules/CommonJS support. Features GitHub Actions trusted publishing to npmjs with Sigstore attestation.
12 lines (10 loc) • 290 B
JavaScript
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
const require_package = require('./package.cjs');
//#region src/index.ts
const version = require_package.version;
function hello() {
return "Hello!";
}
//#endregion
exports.hello = hello;
exports.version = version;