-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 1.88 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
{
"name": "flowclock-cli",
"version": "3.9.0",
"description": "Flowtime count-up terminal timer (HUD, not Pomodoro) with silent session logging — agent-native, like gh and vercel.",
"type": "module",
"license": "AGPL-3.0-or-later",
"author": "Eduardo Borjas",
"homepage": "https://github.com/aedneth/flowclock-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/aedneth/flowclock-cli.git"
},
"bugs": {
"url": "https://github.com/aedneth/flowclock-cli/issues"
},
"keywords": [
"flowtime",
"timer",
"stopwatch",
"hud",
"cli",
"terminal",
"productivity",
"time-tracking",
"agent-native",
"mcp"
],
"bin": {
"flowclock": "dist/cli.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"LICENSE",
"LICENSE-COMMERCIAL",
"README.md",
"CHANGELOG.md"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"commander": "^13.1.0",
"env-paths": "^3.0.0",
"zod": "^3.25.0"
},
"overrides": {
"hono": ">=4.12.25"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^20.14.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^9.0.0",
"prettier": "^3.3.0",
"tsup": "^8.5.1",
"typescript": "^5.5.0",
"vitest": "^4.1.8"
}
}