-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1017 Bytes
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1017 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
40
41
42
43
44
45
46
47
{
"name": "@blutarche/ccauth",
"version": "0.4.0",
"description": "Snapshot and switch between multiple Claude Code CLI account logins on macOS.",
"type": "module",
"bin": {
"ccauth": "dist/cli.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/blutarche/ccauth.git"
},
"homepage": "https://github.com/blutarche/ccauth#readme",
"bugs": "https://github.com/blutarche/ccauth/issues",
"keywords": [
"claude",
"claude-code",
"cli",
"keychain",
"account-switcher",
"profiles",
"macos"
],
"engines": {
"node": ">=18"
},
"os": [
"darwin"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"postbuild": "chmod +x dist/cli.js",
"prepublishOnly": "npm run build && npm test",
"test": "vitest run",
"dev": "tsx src/cli.ts"
},
"devDependencies": {
"@types/node": "^20.14.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0",
"tsx": "^4.16.0"
},
"license": "MIT"
}