@hasna/accounts 0.1.5 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hasna/accounts",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "Manage and switch between multiple Claude Code (and other AI coding tool) profiles/accounts locally — isolated config dirs, per-account email, one-command switching.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -13,6 +13,10 @@
13
13
  ".": {
14
14
  "types": "./dist/index.d.ts",
15
15
  "import": "./dist/index.js"
16
+ },
17
+ "./storage": {
18
+ "types": "./dist/storage.d.ts",
19
+ "import": "./dist/storage.js"
16
20
  }
17
21
  },
18
22
  "files": [
@@ -21,7 +25,7 @@
21
25
  "README.md"
22
26
  ],
23
27
  "scripts": {
24
- "build": "rm -rf dist && bun build src/cli.ts --outdir dist --target node && bun build src/mcp.ts --outdir dist --target node && bun build src/index.ts --outdir dist --target node && tsc --emitDeclarationOnly --outDir dist",
28
+ "build": "rm -rf dist && bun build src/cli.ts --outdir dist --target node && bun build src/mcp.ts --outdir dist --target node && bun build src/index.ts --outdir dist --target node && bun build src/storage.ts --outdir dist --target node --external @aws-sdk/client-s3 && tsc --emitDeclarationOnly --outDir dist",
25
29
  "dev": "bun run src/cli.ts",
26
30
  "typecheck": "tsc --noEmit",
27
31
  "test": "bun test"
@@ -30,8 +34,12 @@
30
34
  "claude",
31
35
  "claude-code",
32
36
  "codex",
37
+ "takumi",
38
+ "gemini",
33
39
  "opencode",
34
40
  "cursor-agent",
41
+ "pi",
42
+ "hermes",
35
43
  "kimi-code",
36
44
  "grok-build",
37
45
  "profile",
@@ -61,6 +69,7 @@
61
69
  "author": "Andrei Hasna <andrei@hasna.com>",
62
70
  "license": "Apache-2.0",
63
71
  "dependencies": {
72
+ "@aws-sdk/client-s3": "^3.985.0",
64
73
  "@modelcontextprotocol/sdk": "^1.27.1",
65
74
  "chalk": "^5.4.1",
66
75
  "commander": "^13.1.0",