This repository was archived by the owner on Feb 24, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.51 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@timesheet/cli",
"version": "1.0.0",
"description": "Command-line interface for timesheet.io time tracking",
"type": "module",
"bin": {
"timesheet": "./dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"typecheck:test": "tsc -p tsconfig.test.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"keywords": [
"timesheet",
"time-tracking",
"cli",
"productivity"
],
"author": "Timesheet.io",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nickvergessen/timesheet-cli.git"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@timesheet/sdk": "^1.0.4",
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"conf": "^13.0.1",
"date-fns": "^4.1.0",
"inquirer": "^12.2.0",
"keytar": "^7.9.0",
"open": "^10.1.0",
"ora": "^8.1.1"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^22.19.3",
"dotenv": "^17.2.3",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.51.0",
"vitest": "^2.1.8"
}
}