-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.92 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
72
73
74
75
76
{
"name": "@airscript/ghitgud",
"version": "2.14.2",
"description": "A better GitHub CLI that extends the official gh CLI.",
"main": "dist/index.js",
"files": [
"dist",
"templates",
"VERSION"
],
"bin": {
"ghitgud": "dist/index.js",
"ghg": "dist/index.js"
},
"engines": {
"node": ">=24",
"pnpm": ">=10"
},
"dependencies": {
"@clack/prompts": "^1.4.0",
"boxen": "^8.0.0",
"cli-progress": "^3.12.0",
"commander": "^14.0.0",
"consola": "3.4.2",
"date-fns": "^4.2.1",
"dotenv": "^16.5.0",
"figlet": "^1.8.1",
"ink": "^5.2.1",
"libsodium-wrappers": "^0.8.4",
"ora": "^8.0.0",
"picocolors": "^1.0.0",
"react": "^18.3.1"
},
"scripts": {
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "vitest run --config tests/e2e/vitest.config.ts",
"build": "rm -rf dist && vite build && cp -r templates dist/",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"lint": "eslint src/ tests/",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "rm -rf dist coverage",
"prepare": "husky && pnpm build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/airscripts/ghitgud.git"
},
"author": "airscripts",
"license": "MIT",
"bugs": {
"url": "https://github.com/airscripts/ghitgud/issues"
},
"homepage": "https://github.com/airscripts/ghitgud#readme",
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/cli-progress": "^3.11.6",
"@types/figlet": "^1.7.0",
"@types/node": "^24.0.0",
"@types/react": "^18.3.18",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "10.3.0",
"eslint-config-prettier": "10.1.8",
"husky": "9.1.7",
"prettier": "3.8.3",
"typescript": "^5.8.3",
"typescript-eslint": "8.59.2",
"vite": "^8.0.11",
"vitest": "^3.2.4"
},
"directories": {
"test": "tests"
}
}