feat: init

This commit is contained in:
2025-09-01 02:28:55 +07:00
commit eb357ef703
21 changed files with 6628 additions and 0 deletions

12
tsdown.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from 'tsdown';
export default defineConfig([
{
entry: 'src/index.ts',
dts: true,
},
{
entry: 'src/cli.ts',
noExternal: ['@clack/prompts'],
},
]);