-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.37 KB
/
package.json
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
{
"name": "@savaryna/git-add-account",
"version": "2.0.2",
"description": "🔐 A small CLI app that allows you to easily add multiple GIT accounts on one machine. It switches between accounts automatically based on the workspace (directory/subdirectory) you are in.",
"homepage": "https://github.com/savaryna/git-add-account#readme",
"keywords": [
"add",
"multiple",
"git",
"github",
"account",
"accounts",
"users",
"on",
"one",
"machine",
"mac",
"linux",
"windows",
"ssh",
"verified",
"commit",
"auto",
"switch"
],
"author": "Alex Tofan",
"license": "MIT",
"bugs": {
"url": "https://github.com/savaryna/git-add-account/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/savaryna/git-add-account.git"
},
"type": "commonjs",
"files": [
"bin"
],
"bin": {
"gaa": "bin/main.js",
"git-add-account": "bin/main.js"
},
"scripts": {
"link": "npm unlink -g && npm link",
"dev": "tsup --watch",
"build": "tsup",
"pretest": "npm run build",
"test": "npm publish --dry-run"
},
"source": "src/index.ts",
"main": "bin/main.js",
"dependencies": {
"prompts": "^2.4.2",
"zod": "^3.20.6"
},
"devDependencies": {
"@types/node": "^22.5.2",
"@types/prompts": "^2.4.2",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
}
}