feat: initial commit - terminal note app with SQLite

This commit is contained in:
2026-04-11 01:24:17 +08:00
parent 3e05fd06fe
commit 6e2c50ca30
9 changed files with 653 additions and 11 deletions

View File

@@ -1,10 +1,11 @@
{
"name": "note",
"name": "mio",
"module": "src/index.tsx",
"type": "module",
"private": true,
"scripts": {
"dev": "bun run --watch src/index.tsx"
"dev": "bun run --watch src/index.tsx",
"build": "bun build src/index.tsx --compile --outfile mio.exe"
},
"devDependencies": {
"@types/bun": "latest"
@@ -13,8 +14,10 @@
"typescript": "^5"
},
"dependencies": {
"@libsql/client": "^0.17.2",
"@opentui/core": "^0.1.97",
"@opentui/react": "^0.1.97",
"marked": "^18.0.0",
"react": "^19.2.4"
}
}