-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.29 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
{
"name": "@kud/jira-cli",
"version": "0.6.2",
"type": "module",
"description": "Jira on the command line — read issues, comments and attachments as plain text",
"keywords": [
"jira",
"cli",
"atlassian",
"attachments",
"jql"
],
"license": "MIT",
"author": "Erwann Mest <m@kud.io>",
"repository": {
"type": "git",
"url": "git+https://github.com/kud/jira-cli.git"
},
"homepage": "https://github.com/kud/jira-cli#readme",
"bugs": "https://github.com/kud/jira-cli/issues",
"bin": {
"jira": "dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup src/index.ts --format esm --clean",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@kud/ink-ui": "0.28.2",
"@kud/jira": "0.4.0",
"@kud/jira-ink": "0.5.0",
"commander": "14.0.1",
"ink": "7.1.1",
"react": "19.2.5"
},
"devDependencies": {
"@kud/cli-testing": "0.1.0",
"@types/node": "24.10.1",
"@types/react": "19.2.7",
"ink-testing-library": "4.0.0",
"tsup": "8.5.0",
"tsx": "4.20.6",
"typescript": "5.9.3",
"vitest": "3.2.4"
}
}