This repository was archived by the owner on Mar 21, 2025. It is now read-only.

Description
Basically I've got a bunch of projects that have scripts like this
scripts/
├── build
│ ├── backend.sh
│ └── frontend.sh
└── start
├── backend.sh
└── frontend.sh
I've only added the top-level commands and would like to run some sub-level commands without adding each target separately to package.json (some projects have way more build scripts than this one)
Would it be possible to add the abbility to run targets directly using scripty <target> for ex npx scripty start:frontend ?