@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 +8 -0
- package/bin/sellable-install.mjs +0 -5
- package/package.json +1 -1
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.
|
package/bin/sellable-install.mjs
CHANGED
|
@@ -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) {
|