-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.25 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.25 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "gitlab-mr-cli",
"version": "0.4.0",
"description": "TypeScript CLI 工具,用於分析 GitLab 專案的 Merge Request、分支健康度與合併頻率趨勢",
"main": "dist/index.js",
"type": "module",
"bin": {
"gitlab-mr": "./bin/run.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"ci-health": "./bin/run.js ci-health"
},
"keywords": [
"gitlab",
"merge-request",
"cli",
"typescript"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@gitbeaker/core": "^43.5.0",
"@gitbeaker/rest": "^43.5.0",
"@inquirer/prompts": "^7.9.0",
"@oclif/core": "^4.6.0",
"@types/cli-progress": "^3.11.6",
"chalk": "^5.6.2",
"cli-progress": "^3.12.0",
"cli-table3": "^0.6.5",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"js-yaml": "^4.1.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.9.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"oclif": {
"bin": "gitlab-mr",
"dirname": "gitlab-mr",
"commands": "./dist/commands"
}
}