npm-run-scripts 1.0.2

Fast interactive TUI for running npm scripts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  "name": "project-with-comments",
  "version": "1.0.0",
  "scripts": {
    "//dev": "Start the development server",
    "dev": "next dev",
    "// build": "Build for production",
    "build": "next build",
    "//start//": "Start production server",
    "start": "next start",
    "lint": "next lint"
  }
}