31 lines
754 B
JSON
31 lines
754 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/package.json",
|
|
"name": "work-time-calculator",
|
|
"license": "MIT",
|
|
"version": "0.0.1",
|
|
"description": "CLI work time calculation utility",
|
|
"type": "module",
|
|
"main": "src/main.ts",
|
|
"bin": {
|
|
"wtc": "./bin/wtc"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc"
|
|
},
|
|
"keywords": [
|
|
"work",
|
|
"time",
|
|
"calculator"
|
|
],
|
|
"author": "Marko Korhonen <marko@korhonen.cc>",
|
|
"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"
|
|
}
|
|
}
|