clockodo-cli
Version:
**Unofficial node based CLI tool for [Clockodo](https://www.clockodo.com)**
68 lines (67 loc) • 1.47 kB
JSON
{
"name": "clockodo-cli",
"version": "1.2.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"clockodo-cli": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deventon/clockodo-cli.git"
},
"homepage": "https://clockodo.com",
"bugs": {
"url": "https://github.com/deventon/clockodo-cli/issues"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"prepare": "npm run build",
"build": "tsup",
"dev": "tsup --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/index"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/luxon": "^3.4.2",
"@types/node": "^22.13.10",
"@types/node-persist": "^3.1.8",
"cz-conventional-changelog": "^3.3.0",
"semantic-release": "^24.2.3",
"tsup": "^8.4.0",
"typescript": "^5.8.2"
},
"dependencies": {
"axios": "^1.8.3",
"chalk": "^5.4.1",
"clockodo": "^25.0.0",
"commander": "^13.1.0",
"dotenv": "^16.4.7",
"inquirer": "^12.4.3",
"keytar": "^7.9.0",
"luxon": "^3.5.0",
"node-persist": "^4.0.4",
"ora": "^8.2.0"
},
"keywords": [
"clockodo",
"cli",
"command-line",
"time-tracking",
"productivity"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}