-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.5 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@kud/jenkins-cli",
"version": "2.1.0",
"description": "Fast, modern Jenkins CLI + interactive TUI (status, logs, artifacts, search, stream).",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"jenkins": "dist/bin/jenkins-cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p .",
"dev": "tsx bin/jenkins-cli.ts",
"test": "node --import tsx --test 'test/**/*.test.ts' 'test/**/*.test.tsx'",
"prepublishOnly": "npm run build"
},
"keywords": [
"jenkins",
"cli",
"ci",
"tui",
"terminal",
"devops",
"logs",
"artifacts",
"pipeline",
"streaming"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kud/jenkins-cli"
},
"engines": {
"node": ">=22"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"dependencies": {
"@kud/ink-ui": "0.27.0",
"@kud/jenkins": "2.1.0",
"@kud/jenkins-ink": "0.5.0",
"chalk": "5.6.2",
"commander": "14.0.0",
"highlight.js": "11.11.1",
"ink": "7.1.0",
"react": "19.2.7",
"wrap-ansi": "10.0.0"
},
"devDependencies": {
"@types/commander": "2.12.0",
"@types/node": "24.3.1",
"@types/node-fetch": "2.6.13",
"@types/react": "19.2.17",
"ink-testing-library": "4.0.0",
"tsx": "4.20.5",
"typescript": "5.9.2"
}
}