18 lines
399 B
JSON
18 lines
399 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|