-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 791 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 791 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
{
"name": "devflow",
"version": "1.0.0",
"description": "Smart development session manager",
"main": "bin/cli.js",
"bin": {
"devflow": "./bin/cli.js"
},
"type": "module",
"scripts": {
"dev": "nodemon bin/cli.js",
"start": "node bin/cli.js"
},
"keywords": [
"cli",
"productivity",
"developer-tools",
"session-manager"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"commander": "^11.1.0",
"conf": "^12.0.0",
"date-fns": "^4.1.0",
"dotenv": "^17.2.4",
"execa": "^8.0.1",
"inquirer": "^9.2.12",
"open": "^10.0.3",
"ora": "^8.0.1",
"simple-git": "^3.30.0"
},
"devDependencies": {
"nodemon": "^3.0.2"
}
}