-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 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
{
"name": "clocktopus",
"version": "1.13.3",
"description": "Time-tracking automation for Clockify with idle monitoring, Jira integration, Google Calendar sync, CLI, web dashboard, and desktop app.",
"type": "module",
"main": "dist/index.js",
"bin": {
"clocktopus": "dist/index.js"
},
"license": "MIT",
"preferGlobal": true,
"files": [
"dist",
"data/.gitkeep",
"scripts/postinstall.cjs",
"assets/logo.png",
"!dist/desktop"
],
"scripts": {
"build": "bunx tsc",
"prepublishOnly": "bunx tsc",
"postinstall": "node scripts/postinstall.cjs",
"lint": "eslint . --ext .ts",
"clock": "bun dist/index.js",
"monitor": "bun dist/index.js monitor",
"monitor:stop": "bun dist/index.js monitor:stop",
"monitor:restart": "node_modules/.bin/pm2 restart clocktopus-monitor-dev",
"monitor:logs": "bun dist/index.js monitor:logs",
"monitor:status": "node_modules/.bin/pm2 status clocktopus-monitor-dev",
"prepare": "husky",
"dashboard": "bun -e \"import('./dist/dashboard/server.js').then(m => m.startDashboard())\"",
"db:cleanup": "bun dist/scripts/db-cleanup.js",
"google-auth": "bunx tsc && bun dist/scripts/google-auth.js",
"log-calendar": "bunx tsc && bun -r dotenv/config dist/scripts/log-calendar-events.js",
"desktop:version": "bun scripts/desktop-version.ts"
},
"dependencies": {
"@hono/node-server": "^1.19.9",
"axios": "^1.10.0",
"chalk": "^4.1.2",
"commander": "^14.0.0",
"desktop-idle": "^1.3.0",
"dotenv": "^17.0.1",
"googleapis": "^153.0.0",
"hono": "^4.12.3",
"inquirer": "^8.2.4",
"macos-notification-state": "^3.0.0",
"node-gyp": "^11.2.0",
"node-notifier": "^10.0.1",
"pm2": "^6.0.8",
"uuid": "^11.1.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"@types/inquirer": "^9.0.8",
"@types/node": "^24.0.10",
"@types/node-notifier": "^8.0.5",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.36.0"
}
}