robin_cli_tool 1.0.2

A CLI tool to run scripts for any project
Documentation
1
2
3
4
5
6
7
8
9
10
11
{
  "scripts": {
    "dev": "npx next dev --turbopack",
    "build": "npx next build",
    "start": "npx next start",
    "lint": "npx next lint",
    "format": "prettier --write .",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf .next"
  }
}