@nadimtuhin/ytranscript 1.0.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.
package/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "@nadimtuhin/ytranscript",
3
+ "version": "1.0.0",
4
+ "description": "Fast YouTube transcript extraction with bulk processing, Google Takeout support, MCP server, and multiple output formats",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "bin": {
10
+ "ytranscript": "dist/cli.js",
11
+ "ytranscript-mcp": "dist/mcp.js"
12
+ },
13
+ "exports": {
14
+ ".": {
15
+ "import": "./dist/index.js",
16
+ "types": "./dist/index.d.ts"
17
+ }
18
+ },
19
+ "files": [
20
+ "dist"
21
+ ],
22
+ "scripts": {
23
+ "build": "bun build ./src/index.ts --outdir ./dist --target node && bun build ./src/cli.ts --outdir ./dist --target bun && bun build ./src/mcp.ts --outdir ./dist --target node",
24
+ "dev": "bun run --watch src/cli.ts",
25
+ "dev:mcp": "bun run --watch src/mcp.ts",
26
+ "test": "bun test",
27
+ "lint": "bunx @biomejs/biome check --write ./src",
28
+ "typecheck": "tsc --noEmit",
29
+ "prepublishOnly": "bun run build"
30
+ },
31
+ "keywords": [
32
+ "youtube",
33
+ "transcript",
34
+ "captions",
35
+ "subtitles",
36
+ "bulk",
37
+ "google-takeout",
38
+ "cli",
39
+ "mcp",
40
+ "model-context-protocol",
41
+ "ai",
42
+ "bun"
43
+ ],
44
+ "author": "",
45
+ "license": "MIT",
46
+ "repository": {
47
+ "type": "git",
48
+ "url": "git+https://github.com/nadimtuhin/ytranscript.git"
49
+ },
50
+ "devDependencies": {
51
+ "@biomejs/biome": "^1.9.0",
52
+ "@types/bun": "^1.1.0",
53
+ "typescript": "^5.6.0"
54
+ },
55
+ "dependencies": {
56
+ "@modelcontextprotocol/sdk": "^1.25.2",
57
+ "commander": "^12.1.0",
58
+ "linkedom": "^0.18.0",
59
+ "p-limit": "^6.1.0",
60
+ "zod": "^4.3.5"
61
+ },
62
+ "engines": {
63
+ "bun": ">=1.0.0"
64
+ }
65
+ }