Initial stopwatch CLI

This commit is contained in:
2026-07-03 19:20:15 +00:00
commit 85fa683a6d
8 changed files with 849 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"name": "stopwatch-cli",
"version": "1.0.0",
"description": "A minimal terminal stopwatch with TUI",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "node --import tsx --test src/**/*.test.ts"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}