···22 * # AT Protocol Common Utilities
33 *
44 * Shared TypeScript code for other @atp/* packages.
55- * This package is oriented towards writing servers.
55+ * This module is web-compatible.
66+ *
77+ * For server-only utilities (env, fs, logger), use "@atp/common/server".
68 *
79 * @module
810 */
911export * as check from "./check.ts";
1012export * as util from "./util.ts";
11131212-export * from "./env.ts";
1313-export * from "./fs.ts";
1414export * from "./ipld.ts";
1515export * from "./ipld-multi.ts";
1616export * from "./obfuscate.ts";
···1919export * from "./types.ts";
2020export * from "./tid.ts";
2121export * from "./strings.ts";
2222-export * from "./logger.ts";
2322export * from "./dates.ts";
2423export * from "./util.ts";
2524export * from "./retry.ts";
+11
common/server.ts
···11+/**
22+ * # AT Protocol Common Utilities (Server)
33+ *
44+ * Server-only utilities that require Deno/Node.js runtime.
55+ * Includes: env, fs, logger.
66+ *
77+ * @module
88+ */
99+export * from "./env.ts";
1010+export * from "./fs.ts";
1111+export * from "./logger.ts";