adograb 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +108 -0
- package/dist/index.js +3976 -0
- package/package.json +53 -0
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "adograb",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Browse and clone Azure DevOps repositories from the terminal.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"adograb": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"keywords": [
|
|
14
|
+
"azure-devops",
|
|
15
|
+
"ado",
|
|
16
|
+
"cli",
|
|
17
|
+
"git",
|
|
18
|
+
"clone",
|
|
19
|
+
"repositories",
|
|
20
|
+
"devops"
|
|
21
|
+
],
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=20.0.0"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "tsup",
|
|
28
|
+
"dev": "tsx src/index.ts",
|
|
29
|
+
"lint": "eslint src",
|
|
30
|
+
"format": "prettier --write src",
|
|
31
|
+
"test": "vitest run",
|
|
32
|
+
"typecheck": "tsc --noEmit"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@inquirer/prompts": "^7.2.0",
|
|
36
|
+
"axios": "^1.7.9",
|
|
37
|
+
"commander": "^12.1.0",
|
|
38
|
+
"conf": "^13.0.2",
|
|
39
|
+
"execa": "^9.5.1",
|
|
40
|
+
"keytar": "^7.9.0"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@types/node": "^20.17.0",
|
|
44
|
+
"eslint": "^9.15.0",
|
|
45
|
+
"globals": "^15.12.0",
|
|
46
|
+
"prettier": "^3.3.3",
|
|
47
|
+
"tsup": "^8.3.5",
|
|
48
|
+
"tsx": "^4.19.2",
|
|
49
|
+
"typescript": "^5.6.3",
|
|
50
|
+
"typescript-eslint": "^8.15.0",
|
|
51
|
+
"vitest": "^2.1.5"
|
|
52
|
+
}
|
|
53
|
+
}
|