-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 958 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 958 Bytes
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
{
"name": "gcal-duration-export",
"version": "1.0.0",
"description": "A simple CLI tool that exports hours from Google Calendar for the past week (Monday–Sunday), groups them by event name, and prints a summary table with the total time spent per event per day.",
"main": "src/index.ts",
"type": "module",
"files": [
"dist",
"README.md"
],
"keywords": [
"Google Calendar",
"worklog",
"administration",
"tracking",
"business"
],
"author": {
"name": "Peter Polman",
"email": "peter@peterpolman.nl"
},
"license": "MIT",
"bin": {
"gcalexport": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js"
},
"dependencies": {
"axios": "^1.9.0",
"date-fns": "^4.1.0",
"dotenv": "^16.5.0",
"google-auth-library": "^9.15.1",
"googleapis": "^148.0.0"
},
"devDependencies": {
"@types/node": "^22.15.3",
"typescript": "^5.8.3"
}
}