-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.25 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.25 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@squidcode/timebook",
"version": "0.2.1",
"mcpName": "io.github.squidcode/timebook",
"description": "Command-line client and MCP server for Timebook (usetimebook.com) — track time, manage timers, and expose Timebook to AI agents (Claude, Codex, etc.) over MCP.",
"license": "MIT",
"author": "Squidcode LLC <admin@squidcode.com>",
"homepage": "https://github.com/squidcode/timebook-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/squidcode/timebook-cli.git"
},
"bugs": {
"url": "https://github.com/squidcode/timebook-cli/issues"
},
"keywords": [
"timebook",
"time-tracking",
"cli",
"mcp",
"model-context-protocol",
"claude",
"codex",
"freelance",
"invoicing"
],
"type": "module",
"engines": {
"node": ">=18.17"
},
"bin": {
"timebook": "./dist/index.js"
},
"main": "./dist/index.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json && node scripts/postbuild.mjs",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run lint && npm run typecheck && npm run test && npm run build",
"prepare": "husky"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"commander": "^12.1.0",
"env-paths": "^3.0.0",
"open": "^10.1.0",
"picocolors": "^1.1.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^4.1.5"
},
"lint-staged": {
"*.{ts,js,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"publishConfig": {
"access": "public"
}
}