diff --git a/src/loaders/fabric/index.ts b/src/loaders/fabric/index.ts
new file mode 100644
index 0000000..5607d9c
--- /dev/null
+++ b/src/loaders/fabric/index.ts
@@ -0,0 +1,47 @@
+export {
+    FabricContactInformation,
+} from "./fabric-contact-information";
+
+export {
+    FabricDependency,
+    FabricDependencyList,
+
+    getFabricDependencies,
+    toFabricDependencyArray,
+    normalizeFabricDependency,
+} from "./fabric-dependency";
+
+export {
+    FabricDependencyType,
+} from "./fabric-dependency-type";
+
+export {
+    FabricDeveloper,
+} from "./fabric-developer";
+
+export {
+    FabricEnvironmentType,
+} from "./fabric-environment-type";
+
+export {
+    FabricMetadata,
+} from "./fabric-metadata";
+
+export {
+    FabricMetadataCustomPayload,
+
+    getFabricMetadataCustomPayload,
+    getLoadersFromFabricMetadataCustomPayload,
+    getDependenciesFromFabricMetadataCustomPayload,
+    getProjectIdFromFabricMetadataCustomPayload,
+} from "./fabric-metadata-custom-payload";
+
+export {
+    FabricMetadataReader,
+} from "./fabric-metadata-reader";
+
+export {
+    RawFabricMetadata,
+
+    FABRIC_MOD_JSON,
+} from "./raw-fabric-metadata";