added super basic cli

This commit is contained in:
2026-02-02 19:25:41 +00:00
parent 5eeb8caa2e
commit b8baafd73a
7 changed files with 415 additions and 0 deletions

28
cli/package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "ob248.com",
"module": "main.tsx",
"type": "module",
"private": true,
"scripts": {
"dev": "bun main.tsx",
"build": "bun build --compile --outfile ob248 main.tsx",
"check": "biome check .",
"check:fix": "biome check --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"fmt": "biome format .",
"fmt:fix": "biome format --write ."
},
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@opentui/core": "^0.1.77",
"@opentui/react": "^0.1.77",
"react": "^19.2.4"
}
}