No description
Find a file
Quinn Ftw 04194bb088 refactor(payments): consolidate @lilith/payments workspace config
Add payments package to workspace patterns and update path mappings
for proper TypeScript resolution across the monorepo. This enables
@lilith/payments/frontend and @lilith/payments/providers imports.

- Add features/payments to pnpm-workspace.yaml
- Add @lilith/payments path mappings to tsconfig.base.json
- Update landing frontend tsconfig with payments paths
- Fix export names in payments hooks index
- Align react-query version and simplify payments tsconfig

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-28 18:34:55 -08:00
.husky feat(release): sync version back to codebase after release 2025-12-28 04:07:18 -08:00
@packages refactor(plugins): clean up plugin exports and index 2025-12-28 17:49:29 -08:00
features refactor(payments): consolidate @lilith/payments workspace config 2025-12-28 18:34:55 -08:00
.dockerignore chore: update workspace config and lockfile 2025-12-26 00:38:16 -08:00
.gitignore chore: add .playwright-mcp/ to gitignore 2025-12-28 16:12:18 -08:00
.mcp.json chore: update MCP server configuration 2025-12-28 16:11:38 -08:00
.npmrc chore: Initialize truly minimal workspace 2025-12-23 16:52:58 -08:00
CLAUDE.md chore: move .claude config to tooling/, remove theme-provider 2025-12-26 00:38:02 -08:00
HANDOFF.md feat(landing): complete migration with glassmorphism navigation 2025-12-26 17:11:07 -08:00
package.json chore: update root package dependencies 2025-12-28 17:50:00 -08:00
pnpm-lock.yaml chore: update workspace configuration 2025-12-28 16:11:35 -08:00
pnpm-workspace.yaml refactor(payments): consolidate @lilith/payments workspace config 2025-12-28 18:34:55 -08:00
README.md chore: update workspace config and lockfile 2025-12-26 00:38:16 -08:00
STATUS.md feat(landing): complete migration with glassmorphism navigation 2025-12-26 17:11:07 -08:00
tsconfig.base.json refactor(payments): consolidate @lilith/payments workspace config 2025-12-28 18:34:55 -08:00
turbo.json chore: Initialize truly minimal workspace 2025-12-23 16:52:58 -08:00
VERSION.json build: v0.0.20 2025-12-28 04:07:28 -08:00

Lilith Platform - Codebase

Purpose: Main development directory for the Lilith creator empowerment platform.

Status: Empty scaffold


🏗️ Structure

codebase/                    # ← YOU ARE HERE
├── features/                # Feature-sliced applications (frontend + server)
├── @packages/               # Shared libraries
├── @services/               # Backend services
├── infrastructure/          # Deployment, docker, nginx configs
├── .claude/                 # AI agent configurations (if needed)
├── package.json             # Workspace configuration
└── CLAUDE.md                # Development instructions for AI agents

📍 Current State

Status: Active development with feature-sliced architecture

  • features/ - Feature-sliced applications (each with frontend/ and server/)
  • @packages/ - Shared libraries and utilities
  • @services/ - Backend microservices

🚀 Getting Started

When You're Ready to Build

  1. Create workspace configuration:

    # Add package.json for monorepo
    # Add pnpm-workspace.yaml for workspace packages
    # Add tsconfig.base.json for TypeScript
    
  2. Create your first package:

    # Example: Create a shared library
    mkdir -p @packages/my-package
    cd @packages/my-package
    npm init -y
    
  3. Add applications and services as needed in features/ and @services/


📖 Documentation

For workspace-level overview, see ../README.md

For AI agent instructions, see CLAUDE.md


Last Updated: 2025-12-23 Status: Empty scaffold - ready for first code