{ "$schema": "https://json.schemastore.org/package.json", "name": "work-time-calculator", "version": "0.0.3", "description": "An interactive CLI tool to calculate work time", "license": "MIT", "repository": { "url": "https://git.korhonen.cc/FunctionalHacker/work-time-calculator.git", "type": "git" }, "bugs": { "url": "https://git.korhonen.cc/FunctionalHacker/work-time-calculator/issues", "email": "wtc@functionalhacker.korhonen.cc" }, "type": "module", "main": "src/main.ts", "bin": { "wtc": "bin/wtc" }, "scripts": { "build": "tsc" }, "keywords": [ "work", "time", "calculator" ], "author": "Marko Korhonen ", "devDependencies": { "@types/node": "^20.9.0", "@typescript-eslint/eslint-plugin": "^6.10.0", "eslint-config-prettier": "^9.0.0", "typescript": "^5.2.2" }, "dependencies": { "chalk": "^5.3.0", "dayjs": "^1.11.10" } }