-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 961 Bytes
/
package.json
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
{
"name": "pomodoroble",
"version": "0.1.0",
"description": "A programmable study timer.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib",
"src"
],
"repository": "https://github.com/MatthewCaseres/pomodoroble.git",
"keywords": [
"timer",
"pomodoro",
"cli"
],
"author": "Matthew Caseres <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/google-spreadsheet": "^3.0.2",
"@types/hh-mm-ss": "^1.2.0",
"@types/json2csv": "^5.0.1",
"@types/luxon": "^1.26.1",
"@types/node": "^14.14.31",
"@types/uuid": "^8.3.0",
"google-spreadsheet": "^3.1.15",
"luxon": "^1.26.0",
"tsx": "^3.12.7",
"typescript": "^4.2.2",
"zod": "^3.22.2"
},
"dependencies": {
"colors": "^1.4.0",
"hh-mm-ss": "^1.2.0",
"log-update": "^4.0.0",
"yaml": "^1.10.2"
},
"scripts": {
"timer": "tsx usage/run.ts",
"build": "tsc"
}
}