-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.3 KB
/
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
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
{
"name": "productivity-timer",
"version": "2.1.1",
"description": "A CLI/TUI Pomodoro timer and todo (coming soon) application for keyboard addicts and terminal fans that makes you more productive.",
"main": "index.js",
"bin": {
"pt_plugin": "./dist/cli_plugin.js",
"pt": "./dist/cli.js"
},
"files": [
"assets",
"dist"
],
"scripts": {
"prepare": "husky install",
"typecheck": "tsc --noEmit",
"test": "jest --passWithNoTests",
"test:watch": "jest --passWithNoTests --watch",
"test:coverage": "jest --passWithNoTests --coverage",
"build": "npm run build:prod",
"prebuild:prod": "npm run typecheck && npm test && rm -rf ./dist/*",
"build:prod": "BUILD_MODE=production node ./esbuild.config.js",
"prepublishOnly": "npm run build:prod",
"build:dev:watch": "BUILD_MODE=development node ./esbuild.config.js --watch",
"build:dev": "BUILD_MODE=development node ./esbuild.config.js",
"format": "prettier --no-config --no-error-on-unmatched-pattern --write \"{src,tests}/**/*.{js,ts}\""
},
"keywords": [
"pomodoro-timer",
"conuntdown-timer",
"CLI",
"TUI"
],
"author": "Sifat Hossain",
"license": "MIT",
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/blessed": "^0.1.19",
"@types/cli-table": "^0.3.1",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.191",
"@types/node": "^18.7.14",
"@types/node-notifier": "^8.0.2",
"@types/redux-watch": "^1.1.0",
"esbuild": "^0.17.11",
"human-format": "^1.0.0",
"husky": "^8.0.0",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.1",
"ansi-colors": "^4.1.3",
"better-sqlite3": "^8.2.0",
"blessed": "^0.1.81",
"blessed-contrib": "^4.11.0",
"boxen": "^7.0.1",
"cli-pie": "^2.4.2",
"cli-table": "^0.3.11",
"commander": "^9.4.1",
"date-fns": "^2.29.3",
"drawille-canvas": "^1.2.1",
"express-ipc": "^1.0.2",
"flat-colors": "^3.3.12",
"flexible-tree-printer": "^1.0.2",
"fuse.js": "^6.6.2",
"handy-types": "^2.0.0",
"json5": "^2.2.3",
"lodash": "^4.17.21",
"node-notifier": "^10.0.1",
"node-object-hash": "^2.3.10",
"redux-watch": "^1.2.0",
"type-fest": "^3.5.2",
"update-check": "^1.5.4",
"zod": "^3.19.1"
}
}