-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.54 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
{
"name": "authmux",
"version": "0.1.26",
"description": "Multi-account auth multiplexer for AI CLI agents — Claude Code, Codex, Kiro CLI.",
"license": "MIT",
"bin": {
"authmux": "dist/index.js",
"agent-auth": "dist/index.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"postbuild": "node scripts/postbuild-parallel-install.cjs",
"postinstall": "node scripts/postinstall-login-hook.cjs",
"prepublishOnly": "npm run build",
"test": "npm run build && node scripts/run-tests.cjs"
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"scripts/postbuild-parallel-install.cjs",
"scripts/postinstall-login-hook.cjs",
"README.md",
"LICENSE"
],
"keywords": [
"authmux",
"agent-auth",
"claude-code",
"codex",
"kiro",
"cli",
"auth",
"accounts",
"switch",
"parallel",
"multiplexer"
],
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git+https://github.com/recodeee/authmux.git"
},
"bugs": {
"url": "https://github.com/recodeee/authmux/issues"
},
"homepage": "https://github.com/recodeee/authmux#readme",
"author": "NagyVikt",
"dependencies": {
"@oclif/core": "^3.0.0",
"prompts": "^2.4.2",
"tslib": "^2.8.1",
"typescript": "^5.6.3"
},
"devDependencies": {
"@types/prompts": "^2.4.9"
},
"oclif": {
"bin": "authmux",
"commands": "./dist/commands",
"hooks": {
"init": "./dist/hooks/init/update-notifier"
}
}
}