@ascorbic/youtube-loader
Version:
Astro loader for YouTube videos with build-time and live loading capabilities
50 lines • 1.24 kB
JSON
{
"name": "@ascorbic/youtube-loader",
"version": "0.0.2",
"description": "Astro loader for YouTube videos with build-time and live loading capabilities",
"type": "module",
"main": "dist/index.js",
"files": [
"dist"
],
"exports": {
".": "./dist/index.js"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.3",
"astro": "^5.10.1",
"msw": "^2.10.2",
"publint": "^0.3.2",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
},
"peerDependencies": {
"astro": "^4.14.0 || ^5.0.0"
},
"keywords": [
"withastro",
"astro-loader",
"youtube",
"video",
"content-collections"
],
"author": "Matt Kane",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com:ascorbic/astro-loaders.git",
"directory": "packages/youtube"
},
"homepage": "https://github.com/ascorbic/astro-loaders",
"dependencies": {
"zod": "^3.24.1",
"@ascorbic/loader-utils": "^1.0.2"
},
"scripts": {
"build": "tsup src/index.ts --format esm --dts --clean",
"dev": "tsup src/index.ts --format esm --dts --watch",
"check": "publint && attw --pack --ignore-rules=cjs-resolves-to-esm",
"test": "vitest run",
"test:watch": "vitest"
}
}