Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@libeyondea/base-cms-monorepo

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@libeyondea/base-cms-monorepo

Base CMS library for React - Monorepo

latest
Source
npmnpm
Version
1.0.8
Version published
Maintainers
1
Created
Source

Base CMS - Monorepo

Base CMS library for React - Monorepo structure

Packages

This monorepo contains two packages:

@libeyondea/base-cms

Main library package containing all React components, hooks, layouts, and utilities for building CMS applications.

@libeyondea/base-cms-dev

Development dependencies package that bundles all the dev tools needed for working with @libeyondea/base-cms.

Quick Start

For Users

Install both packages:

# Install the main library
npm install @libeyondea/base-cms

# Install dev dependencies (instead of installing each one individually)
npm install --save-dev @libeyondea/base-cms-dev

For Development

Clone and install:

git clone https://github.com/libeyondea/base-cms.git
cd base-cms
npm install

Scripts

  • npm run dev - Start development server for base-cms package
  • npm run build - Build all packages
  • npm run build:cms - Build only the base-cms package
  • npm run lint - Lint all packages
  • npm run preview - Preview the built base-cms package

Workspace Structure

base-cms/
├── packages/
│   ├── base-cms/          # Main library package
│   │   ├── src/           # Source code
│   │   ├── dist/          # Build output
│   │   └── package.json
│   └── base-cms-dev/      # Dev dependencies package
│       └── package.json
├── package.json           # Root package.json with workspaces
└── README.md

Benefits of This Structure

  • Simplified Installation: Users only need to install 2 packages instead of 20+ dev dependencies
  • Version Consistency: All dev tools are versioned together
  • Easier Maintenance: Update dev dependencies in one place
  • Better Developer Experience: Cleaner package.json in user projects

License

MIT

Author

Nguyen Thuc

FAQs

Package last updated on 03 Oct 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts