-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.59 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.59 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
{
"name": "gh-ssh",
"version": "1.3.0",
"description": "Interactive CLI that guides you through creating or reusing SSH keys and connecting them to GitHub.",
"license": "MIT",
"type": "module",
"author": "Juncen Zhou <juncenzhou@higherbros.me>",
"keywords": [
"ssh",
"github",
"cli",
"ssh-keygen",
"ssh-agent",
"developer-tools",
"key-management",
"terminal"
],
"homepage": "https://github.com/higherbros/gh-ssh#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/higherbros/gh-ssh.git"
},
"bugs": {
"url": "https://github.com/higherbros/gh-ssh/issues"
},
"bin": {
"gh-ssh": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx src/cli.ts",
"build": "vite build",
"postbuild": "node -e \"require('node:fs').chmodSync('dist/cli.js', 0o755)\"",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"start": "node dist/cli.js",
"prepublishOnly": "npm run build",
"format": "prettier --write 'src/**/*.ts'",
"lint": "eslint 'src/**/*.{ts,js}'",
"lint:fix": "eslint 'src/**/*.{ts,js}' --fix",
"prepare": "husky"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@inquirer/prompts": "^7.4.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^22.12.0",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"tsx": "^4.7.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}