chore: isolate shared dsh plugins into independent monorepo
Some checks failed
build-and-publish / build-test (push) Failing after 1m6s
build-and-publish / publish (push) Has been skipped

This commit is contained in:
2026-08-26 22:44:31 +07:00
parent 0e0b68fed5
commit 81159a22e8
37 changed files with 3456 additions and 2 deletions

View File

@@ -0,0 +1,38 @@
{
"name": "@deepseek-ai/dsh-telegram-remote",
"version": "0.1.0",
"description": "Remote control + full state visibility for the DeepSeek Harness over Telegram Bot API (long polling, no external services).",
"type": "module",
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
},
"files": [
"lib",
"README.md"
],
"license": "MIT",
"engines": {
"node": ">=22.19"
},
"publishConfig": {
"access": "public",
"registry": "https://git.byte-mate.ru/api/packages/Coder/npm/",
"tag": "latest"
},
"repository": {
"type": "git",
"url": "git+https://git.byte-mate.ru/Coder/dsh-plugins.git",
"directory": "packages/telegram-remote"
},
"keywords": [
"deepseek",
"dsh",
"telegram",
"bot",
"remote-control",
"cordis",
"plugin"
]
}