Add gitignore and initial project files

This commit is contained in:
2026-05-29 12:46:34 +08:00
commit f9e323f70a
20 changed files with 3216 additions and 0 deletions
Executable
+7
View File
@@ -0,0 +1,7 @@
#!/usr/bin/env node
'use strict';
const { main } = require('../src/cli');
main().catch((err) => {
console.error('Fatal error:', err.message);
process.exit(1);
});