Files
ytdlp-segment-downloader/package.json

35 lines
778 B
JSON
Raw Normal View History

2026-01-14 18:43:10 +00:00
{
"name": "yt-segments",
2026-01-14 18:43:10 +00:00
"version": "0.1.0",
"private": true,
"type": "module",
"bin": {
"yt-segments": "./src/cli/index.ts"
},
2026-01-14 18:43:10 +00:00
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"cli": "bun run src/cli/index.ts"
2026-01-14 18:43:10 +00:00
},
"dependencies": {
"react": "^19.2.1",
"react-dom": "^19.2.1",
"next": "15.5.9"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@tailwindcss/postcss": "^4.1.17",
"@types/bun": "^1.3.6",
2026-01-14 18:43:10 +00:00
"@types/node": "^24.10.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.1",
"eslint-config-next": "^15.5.7",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3"
2026-01-14 18:43:10 +00:00
}
}