148 lines
5.7 KiB
JSON
148 lines
5.7 KiB
JSON
|
{
|
||
|
"name": "youtubei.js",
|
||
|
"version": "9.4.0",
|
||
|
"description": "A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).",
|
||
|
"type": "module",
|
||
|
"types": "./dist/src/platform/lib.d.ts",
|
||
|
"typesVersions": {
|
||
|
"*": {
|
||
|
"agnostic": [
|
||
|
"./dist/src/platform/lib.d.ts"
|
||
|
],
|
||
|
"web": [
|
||
|
"./dist/src/platform/lib.d.ts"
|
||
|
],
|
||
|
"web.bundle": [
|
||
|
"./dist/src/platform/lib.d.ts"
|
||
|
],
|
||
|
"web.bundle.min": [
|
||
|
"./dist/src/platform/lib.d.ts"
|
||
|
],
|
||
|
"cf-worker": [
|
||
|
"./dist/src/platform/lib.d.ts"
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"exports": {
|
||
|
".": {
|
||
|
"node": {
|
||
|
"import": "./dist/src/platform/node.js",
|
||
|
"require": "./bundle/node.cjs"
|
||
|
},
|
||
|
"deno": "./dist/src/platform/deno.js",
|
||
|
"types": "./dist/src/platform/lib.d.ts",
|
||
|
"browser": "./dist/src/platform/web.js",
|
||
|
"default": "./dist/src/platform/web.js"
|
||
|
},
|
||
|
"./agnostic": {
|
||
|
"types": "./dist/src/platform/lib.d.ts",
|
||
|
"default": "./dist/src/platform/lib.js"
|
||
|
},
|
||
|
"./web": {
|
||
|
"types": "./dist/src/platform/lib.d.ts",
|
||
|
"default": "./dist/src/platform/web.js"
|
||
|
},
|
||
|
"./web.bundle": {
|
||
|
"types": "./dist/src/platform/lib.d.ts",
|
||
|
"default": "./bundle/browser.js"
|
||
|
},
|
||
|
"./web.bundle.min": {
|
||
|
"types": "./dist/src/platform/lib.d.ts",
|
||
|
"default": "./bundle/browser.min.js"
|
||
|
},
|
||
|
"./cf-worker": {
|
||
|
"types": "./dist/src/platform/lib.d.ts",
|
||
|
"default": "./dist/src/platform/cf-worker.js"
|
||
|
}
|
||
|
},
|
||
|
"author": "LuanRT <luan.lrt4@gmail.com> (https://github.com/LuanRT)",
|
||
|
"funding": [
|
||
|
"https://github.com/sponsors/LuanRT"
|
||
|
],
|
||
|
"contributors": [
|
||
|
"Wykerd (https://github.com/wykerd/)",
|
||
|
"MasterOfBob777 (https://github.com/MasterOfBob777)",
|
||
|
"patrickkfkan (https://github.com/patrickkfkan)",
|
||
|
"akkadaska (https://github.com/akkadaska)",
|
||
|
"Absidue (https://github.com/absidue)"
|
||
|
],
|
||
|
"directories": {
|
||
|
"test": "./test",
|
||
|
"examples": "./examples",
|
||
|
"dist": "./dist"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"test": "npx jest --verbose",
|
||
|
"lint": "npx eslint ./src",
|
||
|
"lint:fix": "npx eslint --fix ./src",
|
||
|
"build": "npm run build:parser-map && npm run build:proto && npm run build:esm && npm run bundle:node && npm run bundle:browser && npm run bundle:browser:prod && npm run bundle:cf-worker",
|
||
|
"build:parser-map": "node ./scripts/gen-parser-map.mjs",
|
||
|
"build:proto": "npx pb-gen-ts --entry-path=\"src/proto\" --out-dir=\"src/proto/generated\" --ext-in-import=\".js\"",
|
||
|
"build:esm": "npx tspc",
|
||
|
"build:deno": "npx cpy ./src ./deno && npx esbuild ./src/utils/DashManifest.tsx --keep-names --format=esm --platform=neutral --target=es2020 --outfile=./deno/src/utils/DashManifest.js && npx cpy ./package.json ./deno && npx replace \".js';\" \".ts';\" ./deno -r && npx replace '.js\";' '.ts\";' ./deno -r && npx replace \"'./DashManifest.ts';\" \"'./DashManifest.js';\" ./deno -r && npx replace \"'jintr';\" \"'https://esm.sh/jintr';\" ./deno -r",
|
||
|
"bundle:node": "npx esbuild ./dist/src/platform/node.js --bundle --target=node10 --keep-names --format=cjs --platform=node --outfile=./bundle/node.cjs --external:jintr --external:undici --external:linkedom --external:tslib --sourcemap --banner:js=\"/* eslint-disable */\"",
|
||
|
"bundle:browser": "npx esbuild ./dist/src/platform/web.js --banner:js=\"/* eslint-disable */\" --bundle --target=chrome58 --keep-names --format=esm --sourcemap --define:global=globalThis --conditions=module --outfile=./bundle/browser.js --platform=browser",
|
||
|
"bundle:browser:prod": "npm run bundle:browser -- --outfile=./bundle/browser.min.js --minify",
|
||
|
"bundle:cf-worker": "npx esbuild ./dist/src/platform/cf-worker.js --banner:js=\"/* eslint-disable */\" --bundle --target=es2020 --keep-names --format=esm --sourcemap --define:global=globalThis --conditions=module --outfile=./bundle/cf-worker.js --platform=node",
|
||
|
"prepare": "npm run build",
|
||
|
"watch": "npx tsc --watch"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/LuanRT/YouTube.js.git"
|
||
|
},
|
||
|
"license": "MIT",
|
||
|
"dependencies": {
|
||
|
"jintr": "^1.1.0",
|
||
|
"tslib": "^2.5.0",
|
||
|
"undici": "^5.19.1"
|
||
|
},
|
||
|
"overrides": {
|
||
|
"typescript": "^5.0.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@types/glob": "^8.1.0",
|
||
|
"@types/jest": "^28.1.7",
|
||
|
"@types/node": "^17.0.45",
|
||
|
"@typescript-eslint/eslint-plugin": "^5.30.6",
|
||
|
"@typescript-eslint/parser": "^5.30.6",
|
||
|
"cpy-cli": "^4.2.0",
|
||
|
"esbuild": "^0.14.49",
|
||
|
"eslint": "^8.19.0",
|
||
|
"eslint-plugin-tsdoc": "^0.2.16",
|
||
|
"glob": "^8.0.3",
|
||
|
"jest": "^28.1.3",
|
||
|
"pbkit": "^0.0.59",
|
||
|
"replace": "^1.2.2",
|
||
|
"ts-jest": "^28.0.8",
|
||
|
"ts-patch": "^3.0.2",
|
||
|
"ts-transformer-inline-file": "^0.2.0",
|
||
|
"typescript": "^5.0.0"
|
||
|
},
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/LuanRT/YouTube.js/issues"
|
||
|
},
|
||
|
"homepage": "https://github.com/LuanRT/YouTube.js#readme",
|
||
|
"keywords": [
|
||
|
"yt",
|
||
|
"dl",
|
||
|
"ytdl",
|
||
|
"youtube",
|
||
|
"youtubedl",
|
||
|
"youtube-dl",
|
||
|
"youtube-downloader",
|
||
|
"youtube-music",
|
||
|
"youtube-studio",
|
||
|
"innertube",
|
||
|
"unofficial",
|
||
|
"downloader",
|
||
|
"livechat",
|
||
|
"studio",
|
||
|
"upload",
|
||
|
"ytmusic",
|
||
|
"search",
|
||
|
"music",
|
||
|
"api"
|
||
|
]
|
||
|
}
|