52 lines
1.1 KiB
JSON
52 lines
1.1 KiB
JSON
{
|
|
"name": "youtube-transcript",
|
|
"version": "1.3.1",
|
|
"description": "Fetch transcript from a youtube video",
|
|
"type": "module",
|
|
"main": "./dist/commonjs/index.js",
|
|
"module": "./dist/esm/index.js",
|
|
"types": "./dist/commonjs/index.d.ts",
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/esm/index.d.ts",
|
|
"default": "./dist/esm/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/commonjs/index.d.ts",
|
|
"default": "./dist/commonjs/index.js"
|
|
}
|
|
}
|
|
},
|
|
"tshy": {
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": "./src/index.ts"
|
|
}
|
|
},
|
|
"author": "Kakulukian",
|
|
"keywords": [
|
|
"youtube",
|
|
"transcript"
|
|
],
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"tshy": "^3.0.0",
|
|
"typescript": "^5.7.0"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"repository": "https://github.com/Kakulukian/youtube-transcript.git",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"homepage": "https://github.com/Kakulukian/youtube-transcript",
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"scripts": {
|
|
"build": "tshy"
|
|
}
|
|
} |