Skip to content

Commit 273b9e1

Browse files
committed
feat: Add authentication and configuration management commands, alongside a rate-limited HTTP client with retry logic.
1 parent 293d64b commit 273b9e1

File tree

14 files changed

+1787
-3
lines changed

14 files changed

+1787
-3
lines changed

package.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,21 @@
88
},
99
"bugs": "https://github.com/Promact/moa-cli-core/issues",
1010
"dependencies": {
11+
"@inquirer/prompts": "^8.2.0",
1112
"@oclif/core": "^4",
1213
"@oclif/plugin-help": "^6",
13-
"@oclif/plugin-plugins": "^5"
14+
"@oclif/plugin-plugins": "^5",
15+
"axios": "^1.13.4",
16+
"bottleneck": "^2.19.5",
17+
"cli-table3": "^0.6.5",
18+
"keytar": "^7.9.0"
1419
},
1520
"devDependencies": {
1621
"@eslint/compat": "^1",
1722
"@oclif/prettier-config": "^0.2.1",
1823
"@oclif/test": "^4",
1924
"@types/chai": "^4",
25+
"@types/keytar": "^4.4.2",
2026
"@types/mocha": "^10",
2127
"@types/node": "^18",
2228
"chai": "^4",
@@ -54,6 +60,9 @@
5460
],
5561
"topicSeparator": " ",
5662
"topics": {
63+
"config": {
64+
"description": "Manage CLI configuration and profiles"
65+
},
5766
"hello": {
5867
"description": "Say hello to the world and others"
5968
}
@@ -70,4 +79,4 @@
7079
"version": "oclif readme && git add README.md"
7180
},
7281
"types": "dist/index.d.ts"
73-
}
82+
}

0 commit comments

Comments
 (0)