-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.89 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.89 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
{
"name": "github-code-search",
"version": "1.8.3",
"description": "Interactive GitHub code search with per-repo aggregation",
"keywords": [
"bun",
"cli",
"code-search",
"developer-tools",
"github",
"github-api",
"interactive",
"json",
"markdown",
"organisation",
"organization",
"repositories",
"search",
"terminal",
"tui",
"typescript"
],
"homepage": "https://fulll.github.io/github-code-search/",
"bugs": {
"url": "https://github.com/fulll/github-code-search/issues"
},
"license": "MIT",
"author": "fulll",
"repository": {
"type": "git",
"url": "https://github.com/fulll/github-code-search.git"
},
"bin": {
"github-code-search": "./github-code-search.ts"
},
"scripts": {
"build": "bun build.ts",
"test": "bun test",
"test:bats": "bats install.test.bats",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"lint": "oxlint .",
"knip": "knip",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:build:a11y": "VITEPRESS_HOSTNAME=http://localhost:4173 vitepress build docs",
"docs:build:og": "bun scripts/generate-og.ts",
"docs:preview": "vitepress preview docs",
"docs:a11y": "pa11y-ci --config .pa11yci.json --sitemap http://localhost:4173${VITEPRESS_BASE:-/github-code-search/}sitemap.xml",
"docs:lhci": "lhci autorun --config .lhci.config.cjs",
"docs:test:responsive": "playwright test"
},
"dependencies": {
"commander": "^14.0.3",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@lhci/cli": "^0.15.1",
"@playwright/test": "^1.58.2",
"@resvg/resvg-js": "^2.6.2",
"bun-types": "^1.3.10",
"knip": "^5.86.0",
"mermaid": "^11.0.0",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"pa11y-ci": "^4.1.0",
"vitepress": "^1.6.3",
"vitepress-mermaid-renderer": "^1.1.18"
}
}