-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.2 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
{
"name": "pomodorocli",
"version": "1.0.0",
"description": "Terminal-first Pomodoro + productivity system",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist"
],
"bin": {
"pomodorocli": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx source/cli.tsx",
"dev:daemon": "tsx source/cli.tsx daemon start",
"start": "node dist/cli.js",
"daemon": "node dist/cli.js daemon start",
"report": "python3 daily_report.py",
"report:send": "python3 daily_report.py --send",
"test": "echo \"No test suite yet\" && exit 0"
},
"dependencies": {
"better-sqlite3": "^12.6.2",
"env-paths": "^4.0.0",
"ink": "^5.2.0",
"ink-select-input": "^6.0.0",
"ink-text-input": "^6.0.0",
"meow": "^13.2.0",
"nanoid": "^5.0.9",
"node-notifier": "^10.0.1",
"react": "^18.3.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/env-paths": "^1.0.2",
"@types/jexl": "^2.3.4",
"@types/node": "^22.13.0",
"@types/node-notifier": "^8.0.5",
"@types/react": "^18.3.18",
"jexl": "^2.3.0",
"json5": "^2.2.3",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}