This commit is contained in:
2025-03-25 09:06:23 +00:00
commit 1e74fbe367
27 changed files with 14700 additions and 0 deletions

18
ts/index.ts Normal file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/env node
import { NupstCli } from './cli.js';
/**
* Main entry point for NUPST
* Initializes the CLI and executes the given command
*/
async function main() {
const cli = new NupstCli();
await cli.parseAndExecute(process.argv);
}
// Run the main function and handle any errors
main().catch(error => {
console.error('Error:', error);
process.exit(1);
});