@liebig-technology/clockodo-cli 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "@liebig-technology/clockodo-cli",
3
+ "version": "0.1.0",
4
+ "description": "AI-friendly CLI for the Clockodo time tracking API",
5
+ "type": "module",
6
+ "bin": {
7
+ "clockodo": "./dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "!dist/*.map"
12
+ ],
13
+ "engines": {
14
+ "node": ">=22.0.0"
15
+ },
16
+ "scripts": {
17
+ "build": "tsup",
18
+ "dev": "tsx src/index.ts",
19
+ "typecheck": "tsc --noEmit",
20
+ "lint": "biome check .",
21
+ "lint:fix": "biome check --write .",
22
+ "test": "vitest run",
23
+ "test:watch": "vitest",
24
+ "prepublishOnly": "pnpm build",
25
+ "prepare": "husky"
26
+ },
27
+ "keywords": [
28
+ "clockodo",
29
+ "time-tracking",
30
+ "cli",
31
+ "api"
32
+ ],
33
+ "license": "MIT",
34
+ "author": "Florian Liebig",
35
+ "repository": {
36
+ "type": "git",
37
+ "url": "https://github.com/liebig-technology/clockodo-cli"
38
+ },
39
+ "publishConfig": {
40
+ "access": "public",
41
+ "provenance": true
42
+ },
43
+ "dependencies": {
44
+ "@clack/prompts": "^1.0.1",
45
+ "cli-table3": "^0.6.5",
46
+ "clockodo": "^28.0.1",
47
+ "commander": "^14.0.3",
48
+ "conf": "^15.1.0",
49
+ "date-fns": "^4.1.0"
50
+ },
51
+ "devDependencies": {
52
+ "@biomejs/biome": "^2.4.3",
53
+ "@types/node": "^22.0.0",
54
+ "husky": "^9.1.7",
55
+ "lint-staged": "^16.2.7",
56
+ "tsup": "^8.5.1",
57
+ "tsx": "^4.21.0",
58
+ "typescript": "^5.9.3",
59
+ "vitest": "^4.0.18"
60
+ },
61
+ "lint-staged": {
62
+ "*": [
63
+ "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
64
+ ]
65
+ }
66
+ }