-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.38 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.38 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
{
"name": "@cloudomium/clauth",
"version": "1.5.0",
"description": "Manage multiple Claude CLI account profiles",
"files": [
"dist"
],
"main": "dist/index.js",
"bin": {
"clauth": "dist/index.js"
},
"scripts": {
"build": "npm run build:cli && npm run build:ui",
"build:cli": "tsc",
"build:ui": "cd ui-web && npm install --no-audit --no-fund --silent && npm run build",
"dev": "tsc --watch",
"dev:ui": "cd ui-web && npm run dev",
"start": "node dist/index.js",
"link": "npm run build && npm link",
"prepublishOnly": "npm run build"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"claude",
"claude-code",
"cli",
"profile",
"account",
"multi-account",
"anthropic"
],
"author": "umuplus",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/umuplus/clauth.git"
},
"bugs": {
"url": "https://github.com/umuplus/clauth/issues"
},
"homepage": "https://github.com/umuplus/clauth#readme",
"type": "module",
"devDependencies": {
"@types/gradient-string": "^1.1.6",
"@types/node": "^25.2.3",
"typescript": "^5.9.3"
},
"dependencies": {
"@hono/node-server": "^1.19.14",
"asciichart": "^1.5.25",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.3",
"gradient-string": "^3.0.0",
"hono": "^4.12.14"
}
}