forked from TBXark/ChatGPT-Telegram-Workers
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request TBXark#283 from TBXark/dev
chore: 添加绑定自定义命令到菜单的功能
- Loading branch information
Showing
20 changed files
with
290 additions
and
256 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,9 @@ | |
"type": "module", | ||
"version": "1.9.3", | ||
"description": "The easiest and quickest way to deploy your own ChatGPT Telegram bot is to use a single file and simply copy and paste it. There is no need for any dependencies, local development environment configuration, domain names, or servers.", | ||
"author": "TBXark", | ||
"author": "tbxark <[email protected]>", | ||
"license": "MIT", | ||
"repository": "[email protected]:TBXark/ChatGPT-Telegram-Workers.git", | ||
"exports": { | ||
".": { | ||
"types": "./dist/index.d.ts", | ||
|
@@ -23,6 +24,7 @@ | |
"build": "vite build", | ||
"build:local": "BUILD_MODE=local vite build", | ||
"build:docker": "npm run build:local && cd dist && docker build -t chatgpt-telegram-workers:latest .", | ||
"build:dockerx": "npm run build:local && cd dist && docker build --platform linux/amd64,linux/arm64 -t tbxark/chatgpt-telegram-workers:latest --push .", | ||
"build:vercel": "BUILD_MODE=vercel vite build", | ||
"build:pack": "BUILD_MODE=pack vite build", | ||
"deploy:dist": "wrangler deploy", | ||
|
@@ -36,23 +38,23 @@ | |
"wrangler": "wrangler" | ||
}, | ||
"dependencies": { | ||
"cloudflare-worker-adapter": "^1.3.2" | ||
"cloudflare-worker-adapter": "^1.3.3" | ||
}, | ||
"devDependencies": { | ||
"@antfu/eslint-config": "^2.27.3", | ||
"@antfu/eslint-config": "^3.0.0", | ||
"@rollup/plugin-node-resolve": "^15.2.3", | ||
"@types/node": "^22.5.1", | ||
"@vercel/node": "^3.2.9", | ||
"@types/node": "^22.5.3", | ||
"@vercel/node": "^3.2.11", | ||
"eslint": "^9.8.0", | ||
"eslint-plugin-format": "^0.1.2", | ||
"rollup-plugin-cleanup": "^3.2.1", | ||
"rollup-plugin-node-externals": "^7.1.3", | ||
"telegram-bot-api-types": "^7.9.12", | ||
"tsx": "^4.19.0", | ||
"typescript": "^5.5.4", | ||
"vite": "^5.4.2", | ||
"vite": "^5.4.3", | ||
"vite-plugin-checker": "^0.7.2", | ||
"vite-plugin-dts": "^4.0.3", | ||
"wrangler": "^3.72.3" | ||
"vite-plugin-dts": "^4.1.0", | ||
"wrangler": "^3.74.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.