@sellable/install 0.1.0 → 0.1.1

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/README.md CHANGED
@@ -19,3 +19,11 @@ https://app.sellable.dev/settings
19
19
  ```
20
20
 
21
21
  Then pass it with `--token` or `SELLABLE_TOKEN`.
22
+
23
+ Auth is stored once at:
24
+
25
+ ```text
26
+ ~/.sellable/config.json
27
+ ```
28
+
29
+ Claude Code and Codex are configured to launch the same packaged MCP server.
@@ -155,12 +155,7 @@ function writeAuth(opts) {
155
155
  };
156
156
 
157
157
  const sellablePath = join(homedir(), ".sellable", "config.json");
158
- const claudePath = join(homedir(), ".claude", "sellable.json");
159
- const codexPath = join(homedir(), ".codex", "sellable.json");
160
-
161
158
  writeJson(sellablePath, config, opts);
162
- if (opts.host === "claude" || opts.host === "all") writeJson(claudePath, config, opts);
163
- if (opts.host === "codex" || opts.host === "all") writeJson(codexPath, config, opts);
164
159
  }
165
160
 
166
161
  function mcpCommand(opts) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellable/install",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "description": "One-command installer for Sellable MCP in Claude Code and Codex",
6
6
  "bin": {