@1presence/bridge 0.1.14 → 0.1.15
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/dist/claude.js +1 -2
- package/dist/index.js +0 -0
- package/package.json +2 -1
package/dist/claude.js
CHANGED
|
@@ -63,8 +63,7 @@ function spawnClaude(params) {
|
|
|
63
63
|
}
|
|
64
64
|
const keySource = event['apiKeySource'];
|
|
65
65
|
const model = event['model'];
|
|
66
|
-
|
|
67
|
-
process.stderr.write(`[bridge] model: ${model ?? 'unknown'} auth: ${authLabel}\n`);
|
|
66
|
+
process.stderr.write(`[bridge] model: ${model ?? 'unknown'} apiKeySource: ${keySource ?? 'none'}\n`);
|
|
68
67
|
sessionIdExtracted = true;
|
|
69
68
|
}
|
|
70
69
|
// Count complete assistant turns + accumulate token usage
|
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@1presence/bridge",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.15",
|
|
4
4
|
"description": "Run 1Presence on your Mac and use your Claude.ai Pro subscription from any device",
|
|
5
5
|
"bin": {
|
|
6
6
|
"1presence-bridge": "dist/index.js"
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"README.md"
|
|
12
12
|
],
|
|
13
13
|
"scripts": {
|
|
14
|
+
"prepublishOnly": "npm version patch --no-git-tag-version",
|
|
14
15
|
"prepack": "tsc",
|
|
15
16
|
"build": "tsc",
|
|
16
17
|
"dev": "tsx src/index.ts",
|