#!/usr/bin/env node /** * Standalone CLI for ORM database operations. * * Performs CRUD operations on the JSON database without requiring * the full Stonyx bootstrap. Supports both file and directory modes. * * Usage: * stonyx-orm create * stonyx-orm list * stonyx-orm get * stonyx-orm delete * * Configuration (environment variables): * DB_MODE -- 'file' or 'directory' (default: 'directory') * DB_PATH -- Path to db.json (default: 'db.json') * DB_DIRECTORY -- Directory name for collection files (default: 'db') * * Configuration (CLI flag): * --config -- Path to a JSON config file with { mode, dbPath, directory } */ export {};