-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 870 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
{
"name": "@inimaz/keepon",
"version": "0.1.2",
"description": "Track your tasks and improve your time management with a simple cli.",
"main": "./lib/index.js",
"repository": {
"url": "https://github.com/inimaz/keepon"
},
"type": "module",
"bin": {
"k": "./lib/index.js"
},
"scripts": {
"build": "npx tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"time-management",
"productivity"
],
"author": "inimaz (https://github.com/inimaz)",
"license": "MIT",
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/node": "^20.12.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.0.0",
"figlet": "^1.7.0",
"lowdb": "^7.0.1",
"mongoose": "^8.2.4",
"signale": "^1.4.0"
},
"types": "lib/"
}