@willh/subtitle-correction-agent 0.1.0

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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +184 -0
  3. package/dist/index.js +4783 -0
  4. package/package.json +44 -0
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@willh/subtitle-correction-agent",
3
+ "version": "0.1.0",
4
+ "description": "影片字幕校正代理人 - 使用 GitHub Copilot SDK",
5
+ "type": "module",
6
+ "files": [
7
+ "dist"
8
+ ],
9
+ "bin": {
10
+ "subtitle-correction-agent": "dist/index.js"
11
+ },
12
+ "main": "dist/index.js",
13
+ "scripts": {
14
+ "bump": "npm version patch --no-git-tag-version && npm install --package-lock-only",
15
+
16
+ "build": "bun build src/index.ts --outdir dist --target node --format esm",
17
+ "start": "npm run build && bun run src/index.ts",
18
+ "dev": "npm run build && bun run src/index.ts",
19
+
20
+ "build:bot": "bun build src/telegram-bot.ts --outdir dist --target node --format esm",
21
+ "bot": "npm run build:bot && bun run src/telegram-bot.ts",
22
+
23
+ "prepack": "npm run build",
24
+ "test": "bun test",
25
+ "typecheck": "tsc --noEmit"
26
+ },
27
+ "keywords": [
28
+ "subtitle",
29
+ "vtt",
30
+ "correction",
31
+ "copilot-sdk",
32
+ "agent"
33
+ ],
34
+ "author": "Will 保哥",
35
+ "license": "MIT",
36
+ "dependencies": {
37
+ "@github/copilot-sdk": "^0.1.0",
38
+ "telegraf": "^4.16.3"
39
+ },
40
+ "devDependencies": {
41
+ "@types/node": "^20.11.0",
42
+ "typescript": "^5.3.3"
43
+ }
44
+ }