Lines 1-41javascript
3// ╔══════════════════════════════════════════════════════════════════════════╗
5// ║ ███████╗ █████╗ ██████╗ ███████╗██╗ ██████╗ ███████╗██╗ ██╗ ║
6// ║ ██╔════╝██╔══██╗██╔══██╗██╔════╝██║ ██╔══██╗██╔════╝██║ ██║ ║
7// ║ █████╗ ███████║██████╔╝█████╗ ██║ ██║ ██║█████╗ ██║ ██║ ║
8// ║ ██╔══╝ ██╔══██║██╔══██╗██╔══╝ ██║ ██║ ██║██╔══╝ ╚██╗ ██╔╝ ║
9// ║ ██║ ██║ ██║██║ ██║███████╗███████╗██████╔╝███████╗ ╚████╔╝ ║
10// ║ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚══════╝╚═════╝ ╚══════╝ ╚═══╝ ║
12// ║ ✦ Source By FarelDev ✦ ║
13// ║ ────────────────────────────────── ║
14// ║ Copyright © 2026 FarelDev. All Rights Reserved. ║
15// ║ Licensed under the Apache License, Version 2.0 ║
16// ║ See LICENSE file for full details. ║
18// ╚══════════════════════════════════════════════════════════════════════════╝
22const { spawn, execSync } = require('child_process');
23const path = require('path');
MediumDynamic Require
Package source references dynamic require/import behavior.
bin/ftermx.jsView on unpkg · L21 24const os = require('os');
25const fs = require('fs');
26const chalk = require('chalk');
27const figlet = require('figlet');
28const gradient = require('gradient-string');
29const inquirer = require('inquirer');
32 cyan: s => chalk.hex('#00d4ff')(s),
33 green: s => chalk.hex('#00ff88')(s),
34 purple: s => chalk.hex('#a855f7')(s),
35 dim: s => chalk.hex('#3d5068')(s),
36 mid: s => chalk.hex('#7a8fa6')(s),
37 bright: s => chalk.hex('#e2eaf5')(s),
38 red: s => chalk.hex('#ff3d5a')(s),
39 orange: s => chalk.hex('#ff8c42')(s),
40 yellow: s => chalk.hex('#ffd700')(s),
41 bold: s => chalk.bold(s),