igir
Version:
🕹 A zero-setup ROM collection manager that sorts, filters, extracts or archives, patches, and reports on collections of any size on any OS.
20 lines (19 loc) • 586 B
JavaScript
let packageJson;
try {
packageJson = (await import("../../../package.json", { with: { type: "json" } })).default;
} catch {
packageJson = (await import("../../package.json", { with: { type: "json" } })).default;
}
class Package {
static JSON = packageJson;
static NAME = packageJson.name;
static DESCRIPTION = packageJson.description;
static HOMEPAGE = packageJson.homepage;
static VERSION = packageJson.version;
static AUTHOR = packageJson.author;
static ENGINES_NODE = packageJson.engines.node;
}
export {
Package as default
};
//# sourceMappingURL=package.js.map