-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.4 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.4 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
{
"name": "github-issue-ops",
"version": "0.1.0",
"description": "CLI to industrialize GitHub issue campaigns (EPIC + sub-issues) from code search results",
"keywords": [
"bun",
"cli",
"developer-tools",
"github",
"github-api",
"github-issues",
"interactive",
"issue-ops",
"markdown",
"organisation",
"organization",
"technical-debt",
"terminal",
"tui",
"typescript"
],
"homepage": "https://fulll.github.io/github-issue-ops/",
"bugs": {
"url": "https://github.com/fulll/github-issue-ops/issues"
},
"license": "MIT",
"author": "fulll",
"repository": {
"type": "git",
"url": "https://github.com/fulll/github-issue-ops.git"
},
"bin": {
"github-issue-ops": "./github-issue-ops.ts"
},
"scripts": {
"build": "bun build.ts",
"test": "bun test",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"lint": "oxlint .",
"knip": "knip",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@clack/prompts": "^0.9.1",
"commander": "^14.0.3",
"picocolors": "^1.1.1"
},
"devDependencies": {
"bun-types": "^1.3.9",
"knip": "^5.84.1",
"mermaid": "^11.0.0",
"oxfmt": "^0.35.0",
"oxlint": "^1.48.0",
"vitepress": "^1.6.3",
"vitepress-mermaid-renderer": "^1.1.11"
}
}