pub const PACKAGE_JSON_PATH: &str = "package.json";
pub const EXTENSIONS: [&str; 5] = ["js", "ts", "jsx", "tsx", "mdx"];
pub const IGNORE_FOLDERS: [&str; 10] = [
"node_modules",
"dist",
"build",
"public",
".next",
".git",
"coverage",
"cypress",
"test",
"output",
];