4, partial 5

This commit is contained in:
Michael Freno
2026-02-04 01:00:57 -05:00
parent 7b5c256e07
commit d5ce8452e4
20 changed files with 2215 additions and 69 deletions

View File

@@ -3,10 +3,14 @@
"module": "src/index.tsx",
"type": "module",
"private": true,
"bin": {
"podtui": "./dist/index.js"
},
"scripts": {
"start": "bun run src/index.tsx",
"dev": "bun run --watch src/index.tsx",
"start": "bun src/index.tsx",
"dev": "bun --watch src/index.tsx",
"build": "bun run build.ts",
"dist": "bun dist/index.js",
"test": "bun test",
"lint": "bun run lint.ts"
},