tg-claude 0.3.3 → 0.3.5
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/index.js +1 -1
- package/package.json +2 -3
package/dist/index.js
CHANGED
|
@@ -18,7 +18,7 @@ function escapeHtml(text) {
|
|
|
18
18
|
* Supports multi-turn conversations via Telegram with --resume.
|
|
19
19
|
*/
|
|
20
20
|
// Package version for --version flag
|
|
21
|
-
const VERSION = '0.3.
|
|
21
|
+
const VERSION = '0.3.5';
|
|
22
22
|
// Detect sudo/root and exit early with fix instructions
|
|
23
23
|
if (process.getuid && process.getuid() === 0) {
|
|
24
24
|
console.error(`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tg-claude",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"description": "Bridge between Claude Code CLI and Telegram for mobile interaction",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -14,8 +14,7 @@
|
|
|
14
14
|
"scripts": {
|
|
15
15
|
"build": "tsc",
|
|
16
16
|
"start": "node dist/index.js",
|
|
17
|
-
"dev": "tsx src/index.ts"
|
|
18
|
-
"prepare": "npm run build"
|
|
17
|
+
"dev": "tsx src/index.ts"
|
|
19
18
|
},
|
|
20
19
|
"engines": {
|
|
21
20
|
"node": ">=20"
|