{ "$schema": "https://json.schemastore.org/package.json", "name": "work-time-calculator", "version": "0.1.0", "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" }, "main": "src/main.ts", "type": "module", "bin": { "wtc": "dist/wtc" }, "scripts": { "build": "rollup -c" }, "keywords": [ "work", "time", "calculator" ], "author": "Marko Korhonen ", "devDependencies": { "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-typescript": "^11.1.5", "@types/node": "^20.9.0", "@types/yargs": "^17.0.31", "@typescript-eslint/eslint-plugin": "^6.10.0", "eslint-config-prettier": "^9.0.0", "rollup": "^4.5.1", "rollup-plugin-add-shebang": "^0.3.1", "tslib": "^2.6.2" }, "dependencies": { "@iarna/toml": "^2.2.5", "chalk": "^5.3.0", "dayjs": "^1.11.10", "xdg-basedir": "^5.1.0", "yargs": "^17.7.2" } }