-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1010 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1010 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
42
43
{
"name": "@altamsh04/reminder-cli",
"version": "1.1.1",
"description": "A simple node command-line tool that allows users to set reminders for tasks or events directly from the terminal.",
"main": "index.js",
"type": "module",
"bin": {
"reminder": "./index.js"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "copyfiles README.md dist"
},
"keywords": [
"reminder",
"cli",
"command-line",
"task-manager",
"event-scheduler",
"nodejs",
"terminal",
"productivity",
"developer-tools",
"simple-reminder"
],
"author": "Altamsh Bairagdar",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/altamsh04/reminder-cli.git"
},
"dependencies": {
"chalk": "^5.3.0",
"node-schedule": "^2.1.1",
"ora": "^8.1.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"copyfiles": "^2.4.1"
}
}