- Rename all user-facing and technical identifiers from OpenPets/Pet to FamiliarOS/Familiar. - Rename packages from @open-pets/* to @familiaros/*; rename install-pet/pet-format packages. - Rename plugin IDs and directories from openpets.* to familiaros.*. - Rename IPC namespace from openpets:* to familiaros:* and state filenames from openpets-* to familiaros-* with legacy migration. - Rename source files (pet-window, built-in-pet, default-pet-controller, etc.) to familiar equivalents. - Update locales (en, es-419, ja, ko, pt-BR, zh-Hans, zh-Hant) and tray/pet context menu strings. - Add Familiar naming feature: preference, settings input, tray menu display. - Update assets and packaging config; all desktop tests pass.
911 B
911 B
packages/familiar-format/
Minimal package providing a type marker for FamiliarOS package identification.
Responsibility
Exports a simple interface and constant to identify the familiar-format package in the FamiliarOS ecosystem. Used for type-level package identification and workspace boundary marking.
Design
Marker Pattern: Provides a nominal type (PetFormatPackageMarker) and runtime constant (petFormatPackageName) for package identification without functional logic.
Zero Dependencies: No runtime dependencies, minimal devDependencies (TypeScript only).
Flow
No data flow - this is a static marker package.
Integration Points
Consumers: Other packages may import the marker interface for type-level package detection.
Exports:
PetFormatPackageMarkerinterface with readonlypackageNamepetFormatPackageNameconstant ("@familiaros/familiar-format")