mcp-headless-youtube-transcript 0.6.0 → 0.6.1
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/CHANGELOG.md +6 -0
- package/build/index.js +0 -0
- package/package.json +10 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.6.1] - 2025-01-24
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **Binary Execution**: Fixed npx execution issue by explicitly defining files array in package.json
|
|
12
|
+
- **File Permissions**: Ensured binary file maintains proper execute permissions when published
|
|
13
|
+
|
|
8
14
|
## [0.6.0] - 2025-01-24
|
|
9
15
|
|
|
10
16
|
### Added
|
package/build/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,12 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-headless-youtube-transcript",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "MCP server for extracting YouTube video transcripts using headless-youtube-captions",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"mcp-headless-youtube-transcript": "build/index.js"
|
|
8
8
|
},
|
|
9
9
|
"type": "module",
|
|
10
|
+
"files": [
|
|
11
|
+
"build/index.js",
|
|
12
|
+
"build/index.d.ts",
|
|
13
|
+
"build/utils.js",
|
|
14
|
+
"build/utils.d.ts",
|
|
15
|
+
"README.md",
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"CHANGELOG.md"
|
|
18
|
+
],
|
|
10
19
|
"scripts": {
|
|
11
20
|
"build": "tsc",
|
|
12
21
|
"dev": "tsx src/index.ts",
|