$ yappus
Welcome to Yappus Terminal! Type 'exit' to quit or '/help' for commands.
> How do I find large files in Linux?
To find large files in Linux, you can use the 'find' command with the '-size' parameter:
find / -type f -size +100M -exec ls -lh \; | sort -rh
> yappus /file package.json
Reading content from: package.json This `package.json` file is the project's manifest. It describes the project's name, version, dependencies, and scripts. Essentially, it tells your computer (and tools like Node.js) everything it needs to know about the project to build and run it. Specifically, this one for a Next.js site using various frontend libraries..
> yappus What dependencies does this project use?
Based on your package.json, this project uses: - React v18.2.0 - Next.js v13.4.1 - TailwindCSS v3.3.2
> _