@socketsecurity/lib
Version:
Core utilities and infrastructure for Socket.dev security tools
56 lines (55 loc) • 1.95 kB
JavaScript
;
/* Socket Lib - Built with esbuild */
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
var paths_exports = {};
__export(paths_exports, {
resolvePackageJsonDirname: () => resolvePackageJsonDirname,
resolvePackageJsonPath: () => resolvePackageJsonPath
});
module.exports = __toCommonJS(paths_exports);
var import_path = require("../path");
let _path;
// @__NO_SIDE_EFFECTS__
function getPath() {
if (_path === void 0) {
_path = require("node:path");
}
return _path;
}
// @__NO_SIDE_EFFECTS__
function resolvePackageJsonDirname(filepath) {
if (filepath.endsWith("package.json")) {
const path = /* @__PURE__ */ getPath();
return (0, import_path.normalizePath)(path.dirname(filepath));
}
return (0, import_path.normalizePath)(filepath);
}
// @__NO_SIDE_EFFECTS__
function resolvePackageJsonPath(filepath) {
if (filepath.endsWith("package.json")) {
return (0, import_path.normalizePath)(filepath);
}
const path = /* @__PURE__ */ getPath();
return (0, import_path.normalizePath)(path.join(filepath, "package.json"));
}
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
resolvePackageJsonDirname,
resolvePackageJsonPath
});