-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 856 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 856 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
{
"name": "devpath-cli",
"version": "0.1.0",
"description": "A developer learning assistant that analyzes projects and recommends resources",
"type": "module",
"main": "src/index.js",
"bin": {
"devpath": "./src/index.js"
},
"scripts": {
"analyze": "node src/index.js analyze",
"recommend": "node src/index.js recommend",
"explain": "node src/index.js explain"
},
"keywords": [
"cli",
"developer",
"learning",
"project-analyzer"
],
"author": "",
"license": "MIT",
"dependencies": {
"aws-cdk-lib": "^2.88.0",
"axios": "^1.4.0",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"devpath-cli": "file:",
"dotenv": "^16.3.1",
"glob": "^10.3.3",
"ora": "^7.0.1",
"simple-git": "^3.19.1"
},
"engines": {
"node": ">=18.0.0"
}
}