-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (31 loc) · 887 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
{
"name": "cli-based-todo",
"version": "1.0.0",
"description": "A simple CLI-based ToDo application for developers to manage tasks directly from the terminal.",
"main": "CLIBasedTodo.js",
"scripts": {
"start": "node CLIBasedTodo.js"
},
"keywords": [
"todo",
"cli",
"terminal",
"tasks",
"node",
"express"
],
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rajveeerr/100xDevs-Journey/tree/main/Assignments/Week4/Assignments/CLI%20Todo"
},
"author": "Rajveer Singh",
"license": "MIT",
"bugs": {
"url": "https://github.com/rajveeerr/100xDevs-Journey/tree/main/Assignments/Week4/Assignments/CLI%20Todo/issues"
},
"homepage": "https://github.com/rajveeerr/100xDevs-Journey/blob/main/Assignments/Week4/Assignments/CLI%20Todo/readme.md"
}