-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1001 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1001 Bytes
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
{
"name": "git-devkit",
"version": "1.1.1",
"description": "A comprehensive developer toolkit for Git advanced users. Includes git-multi-ssh for managing multiple Git SSH identities.",
"type": "module",
"bin": {
"git-multi-ssh": "bin/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sahulkola/git-multi-ssh.git"
},
"homepage": "https://github.com/sahulkola/git-multi-ssh#readme",
"author": "Sahul Kola",
"scripts": {
"setup": "node setup.js",
"start": "git-multi-ssh",
"clean": "rimraf dist",
"build": "npm run clean && node scripts/build.mjs",
"release": "node scripts/release.mjs",
"release:dry": "node scripts/release.mjs --dry-run"
},
"dependencies": {
"chalk": "^5.0.0",
"inquirer": "^9.0.0",
"ora": "^6.0.0"
},
"devDependencies": {
"esbuild": "^0.25.12",
"rimraf": "^6.1.3",
"sharp": "^0.34.5"
},
"keywords": [
"git",
"ssh",
"multi-account"
],
"license": "MIT"
}