diff --git a/README.md b/README.md index cddb982..0d2869e 100644 --- a/README.md +++ b/README.md @@ -6,13 +6,13 @@
-[![Project Status](https://img.shields.io/badge/status-active%20development-orange?style=for-the-badge)](https://github.com/lyfie-app/luthor) -[![Stability](https://img.shields.io/badge/stable%20release-expected%20soon-blue?style=for-the-badge)](https://github.com/lyfie-app/luthor/releases) +[![Project Status](https://img.shields.io/badge/status-active%20development-orange?style=for-the-badge)](https://github.com/lyfie-org/luthor) +[![Stability](https://img.shields.io/badge/stable%20release-expected%20soon-blue?style=for-the-badge)](https://github.com/lyfie-org/luthor/releases) -[![Quality Gates](https://img.shields.io/github/actions/workflow/status/lyfie-app/luthor/quality-gates.yml?branch=main&label=quality%20gates&style=for-the-badge)](https://github.com/lyfie-app/luthor/actions/workflows/quality-gates.yml) -[![Publish Packages](https://img.shields.io/github/actions/workflow/status/lyfie-app/luthor/publish-packages.yml?branch=main&label=publish&style=for-the-badge)](https://github.com/lyfie-app/luthor/actions/workflows/publish-packages.yml) -[![GitHub Release](https://img.shields.io/github/v/release/lyfie-app/luthor?style=for-the-badge)](https://github.com/lyfie-app/luthor/releases) -[![Last Commit](https://img.shields.io/github/last-commit/lyfie-app/luthor/main?style=for-the-badge)](https://github.com/lyfie-app/luthor/commits/main) +[![Quality Gates](https://img.shields.io/github/actions/workflow/status/lyfie-app/luthor/quality-gates.yml?branch=main&label=quality%20gates&style=for-the-badge)](https://github.com/lyfie-org/luthor/actions/workflows/quality-gates.yml) +[![Publish Packages](https://img.shields.io/github/actions/workflow/status/lyfie-app/luthor/publish-packages.yml?branch=main&label=publish&style=for-the-badge)](https://github.com/lyfie-org/luthor/actions/workflows/publish-packages.yml) +[![GitHub Release](https://img.shields.io/github/v/release/lyfie-app/luthor?style=for-the-badge)](https://github.com/lyfie-org/luthor/releases) +[![Last Commit](https://img.shields.io/github/last-commit/lyfie-app/luthor/main?style=for-the-badge)](https://github.com/lyfie-org/luthor/commits/main) [![NPM - @lyfie/luthor](https://img.shields.io/npm/v/@lyfie/luthor?style=for-the-badge&label=@lyfie/luthor)](https://www.npmjs.com/package/@lyfie/luthor) [![NPM - @lyfie/luthor-headless](https://img.shields.io/npm/v/@lyfie/luthor-headless?style=for-the-badge&label=@lyfie/luthor-headless)](https://www.npmjs.com/package/@lyfie/luthor-headless) @@ -65,7 +65,7 @@ pnpm add @lyfie/luthor-headless lexical @lexical/code @lexical/link @lexical/lis - Website: [luthor.fyi](https://www.luthor.fyi) - Docs home: [luthor.fyi/docs/getting-started](https://www.luthor.fyi/docs/getting-started) - Live demo: [luthor.fyi/demo](https://www.luthor.fyi/demo) -- GitHub: [lyfie-app/luthor](https://github.com/lyfie-app/luthor) +- GitHub: [lyfie-app/luthor](https://github.com/lyfie-org/luthor) - Sponsor: [github.com/sponsors/lyfie-app](https://github.com/sponsors/lyfie-app) ## :books: Documentation @@ -126,7 +126,7 @@ pnpm run web:deploy:wsl 3. Run checks locally (`pnpm lint`, `pnpm build`, `pnpm test` where applicable). 4. Open a PR with a clear scope and screenshots/GIFs for UI changes. -Issue tracker: [github.com/lyfie-app/luthor/issues](https://github.com/lyfie-app/luthor/issues) +Issue tracker: [github.com/lyfie-org/luthor/issues](https://github.com/lyfie-org/luthor/issues) ## :chart_with_upwards_trend: Community @@ -136,7 +136,7 @@ Issue tracker: [github.com/lyfie-app/luthor/issues](https://github.com/lyfie-app ### Contributors -[![Contributors](https://contrib.rocks/image?repo=lyfie-app/luthor)](https://github.com/lyfie-app/luthor/graphs/contributors) +[![Contributors](https://contrib.rocks/image?repo=lyfie-app/luthor)](https://github.com/lyfie-org/luthor/graphs/contributors) ## :page_facing_up: License diff --git a/apps/web/scripts/sync-docs.mjs b/apps/web/scripts/sync-docs.mjs index 55e5074..36f0722 100644 --- a/apps/web/scripts/sync-docs.mjs +++ b/apps/web/scripts/sync-docs.mjs @@ -6,7 +6,7 @@ const WEB_ROOT = process.cwd(); const REPO_ROOT = path.resolve(WEB_ROOT, '..', '..'); const SOURCE_DOCS_DIR = path.join(WEB_ROOT, 'src', 'content', 'docs'); const GENERATED_DOCS_INDEX_FILE = path.join(WEB_ROOT, 'src', 'data', 'docs-index.generated.ts'); -const GITHUB_BLOB_BASE = 'https://github.com/lyfie-app/luthor/blob/main'; +const GITHUB_BLOB_BASE = 'https://github.com/lyfie-org/luthor/blob/main'; function isMarkdownFile(filename) { return filename.endsWith('.md') || filename.endsWith('.mdx'); diff --git a/apps/web/src/config/site.ts b/apps/web/src/config/site.ts index 0ade8d3..d6705a3 100644 --- a/apps/web/src/config/site.ts +++ b/apps/web/src/config/site.ts @@ -25,7 +25,7 @@ export const SOCIAL_CARD_PATH = '/social-card.svg'; export const PRIMARY_PACKAGE_NAME = '@lyfie/luthor'; export const HEADLESS_PACKAGE_NAME = '@lyfie/luthor-headless'; -export const GITHUB_URL = 'https://github.com/lyfie-app/luthor'; +export const GITHUB_URL = 'https://github.com/lyfie-org/luthor'; export const NPM_URL = 'https://www.npmjs.com/package/@lyfie/luthor'; export const SPONSORS_URL = 'https://github.com/sponsors/lyfie-app'; export const REACT_PLAYGROUND_URL = 'https://stackblitz.com/edit/luthor-playground'; diff --git a/packages/headless/README.md b/packages/headless/README.md index a209c40..e3a1e37 100644 --- a/packages/headless/README.md +++ b/packages/headless/README.md @@ -6,15 +6,15 @@
-[![Project Status](https://img.shields.io/badge/status-active%20development-orange?style=flat-square)](https://github.com/lyfie-app/luthor) -[![Stability](https://img.shields.io/badge/stable%20release-expected%20soon-blue?style=flat-square)](https://github.com/lyfie-app/luthor/releases) +[![Project Status](https://img.shields.io/badge/status-active%20development-orange?style=flat-square)](https://github.com/lyfie-org/luthor) +[![Stability](https://img.shields.io/badge/stable%20release-expected%20soon-blue?style=flat-square)](https://github.com/lyfie-org/luthor/releases) [![npm version](https://img.shields.io/npm/v/@lyfie/luthor-headless?style=flat-square)](https://www.npmjs.com/package/@lyfie/luthor-headless) [![npm downloads](https://img.shields.io/npm/dm/@lyfie/luthor-headless?style=flat-square)](https://www.npmjs.com/package/@lyfie/luthor-headless) [![bundle size](https://img.shields.io/bundlephobia/minzip/@lyfie/luthor-headless?style=flat-square)](https://bundlephobia.com/package/@lyfie/luthor-headless) [![types](https://img.shields.io/npm/types/@lyfie/luthor-headless?style=flat-square)](https://www.npmjs.com/package/@lyfie/luthor-headless) -[![license](https://img.shields.io/npm/l/@lyfie/luthor-headless?style=flat-square)](https://github.com/lyfie-app/luthor/blob/main/LICENSE) -[![last commit](https://img.shields.io/github/last-commit/lyfie-app/luthor/main?style=flat-square)](https://github.com/lyfie-app/luthor/commits/main) +[![license](https://img.shields.io/npm/l/@lyfie/luthor-headless?style=flat-square)](https://github.com/lyfie-org/luthor/blob/main/LICENSE) +[![last commit](https://img.shields.io/github/last-commit/lyfie-app/luthor/main?style=flat-square)](https://github.com/lyfie-org/luthor/commits/main)
@@ -88,9 +88,9 @@ export function Editor() { - Docs landing: [luthor.fyi/docs/getting-started/luthor-headless](https://www.luthor.fyi/docs/getting-started/luthor-headless) - Features docs: [luthor.fyi/docs/luthor-headless/features](https://www.luthor.fyi/docs/luthor-headless/features) -- User guide (repo): [documentation/user/headless/getting-started.md](https://github.com/lyfie-app/luthor/blob/main/documentation/user/headless/getting-started.md) -- Extensions/config: [documentation/user/headless/extensions-and-configuration.md](https://github.com/lyfie-app/luthor/blob/main/documentation/user/headless/extensions-and-configuration.md) -- Import/export: [documentation/user/headless/import-export.md](https://github.com/lyfie-app/luthor/blob/main/documentation/user/headless/import-export.md) +- User guide (repo): [documentation/user/headless/getting-started.md](https://github.com/lyfie-org/luthor/blob/main/documentation/user/headless/getting-started.md) +- Extensions/config: [documentation/user/headless/extensions-and-configuration.md](https://github.com/lyfie-org/luthor/blob/main/documentation/user/headless/extensions-and-configuration.md) +- Import/export: [documentation/user/headless/import-export.md](https://github.com/lyfie-org/luthor/blob/main/documentation/user/headless/import-export.md) ## Related Packages diff --git a/packages/headless/package.json b/packages/headless/package.json index f45108e..02eb1cd 100644 --- a/packages/headless/package.json +++ b/packages/headless/package.json @@ -39,12 +39,12 @@ "license": "MIT", "repository": { "type": "git", - "url": "https://github.com/lyfie-app/luthor.git" + "url": "https://github.com/lyfie-org/luthor.git" }, "bugs": { - "url": "https://github.com/lyfie-app/luthor/issues" + "url": "https://github.com/lyfie-org/luthor/issues" }, - "homepage": "https://github.com/lyfie-app/luthor#readme", + "homepage": "https://github.com/lyfie-org/luthor#readme", "devDependencies": { "@repo/eslint-config": "workspace:*", "@repo/typescript-config": "workspace:*", diff --git a/packages/luthor/README.md b/packages/luthor/README.md index e435bf2..dddf00a 100644 --- a/packages/luthor/README.md +++ b/packages/luthor/README.md @@ -6,15 +6,15 @@
-[![Project Status](https://img.shields.io/badge/status-active%20development-orange?style=flat-square)](https://github.com/lyfie-app/luthor) -[![Stability](https://img.shields.io/badge/stable%20release-expected%20soon-blue?style=flat-square)](https://github.com/lyfie-app/luthor/releases) +[![Project Status](https://img.shields.io/badge/status-active%20development-orange?style=flat-square)](https://github.com/lyfie-org/luthor) +[![Stability](https://img.shields.io/badge/stable%20release-expected%20soon-blue?style=flat-square)](https://github.com/lyfie-org/luthor/releases) [![npm version](https://img.shields.io/npm/v/@lyfie/luthor?style=flat-square)](https://www.npmjs.com/package/@lyfie/luthor) [![npm downloads](https://img.shields.io/npm/dm/@lyfie/luthor?style=flat-square)](https://www.npmjs.com/package/@lyfie/luthor) [![bundle size](https://img.shields.io/bundlephobia/minzip/@lyfie/luthor?style=flat-square)](https://bundlephobia.com/package/@lyfie/luthor) [![types](https://img.shields.io/npm/types/@lyfie/luthor?style=flat-square)](https://www.npmjs.com/package/@lyfie/luthor) -[![license](https://img.shields.io/npm/l/@lyfie/luthor?style=flat-square)](https://github.com/lyfie-app/luthor/blob/main/LICENSE) -[![last commit](https://img.shields.io/github/last-commit/lyfie-app/luthor/main?style=flat-square)](https://github.com/lyfie-app/luthor/commits/main) +[![license](https://img.shields.io/npm/l/@lyfie/luthor?style=flat-square)](https://github.com/lyfie-org/luthor/blob/main/LICENSE) +[![last commit](https://img.shields.io/github/last-commit/lyfie-app/luthor/main?style=flat-square)](https://github.com/lyfie-org/luthor/commits/main)
@@ -69,9 +69,9 @@ export function App() { - Docs landing: [luthor.fyi/docs/getting-started/luthor](https://www.luthor.fyi/docs/getting-started/luthor) - Presets docs: [luthor.fyi/docs/luthor/presets](https://www.luthor.fyi/docs/luthor/presets) -- User guide (repo): [documentation/user/luthor/getting-started.md](https://github.com/lyfie-app/luthor/blob/main/documentation/user/luthor/getting-started.md) -- Presets/config: [documentation/user/luthor/presets-and-configuration.md](https://github.com/lyfie-app/luthor/blob/main/documentation/user/luthor/presets-and-configuration.md) -- Extensive editor guide: [documentation/user/luthor/extensive-editor.md](https://github.com/lyfie-app/luthor/blob/main/documentation/user/luthor/extensive-editor.md) +- User guide (repo): [documentation/user/luthor/getting-started.md](https://github.com/lyfie-org/luthor/blob/main/documentation/user/luthor/getting-started.md) +- Presets/config: [documentation/user/luthor/presets-and-configuration.md](https://github.com/lyfie-org/luthor/blob/main/documentation/user/luthor/presets-and-configuration.md) +- Extensive editor guide: [documentation/user/luthor/extensive-editor.md](https://github.com/lyfie-org/luthor/blob/main/documentation/user/luthor/extensive-editor.md) ## Need Headless Control? diff --git a/packages/luthor/package.json b/packages/luthor/package.json index 937693c..2c45474 100644 --- a/packages/luthor/package.json +++ b/packages/luthor/package.json @@ -48,12 +48,12 @@ "license": "MIT", "repository": { "type": "git", - "url": "https://github.com/lyfie-app/luthor.git" + "url": "https://github.com/lyfie-org/luthor.git" }, "bugs": { - "url": "https://github.com/lyfie-app/luthor/issues" + "url": "https://github.com/lyfie-org/luthor/issues" }, - "homepage": "https://github.com/lyfie-app/luthor#readme", + "homepage": "https://github.com/lyfie-org/luthor#readme", "dependencies": { "@lexical/code": "^0.40.0", "@lexical/link": "^0.40.0",