initial commit

This commit is contained in:
2025-08-01 21:42:02 +02:00
commit 69da9f42d4
25 changed files with 659 additions and 0 deletions

27
package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "replay_downloader",
"module": "src/index.ts",
"type": "module",
"private": true,
"scripts": {
"debug": "bun --watch src/index.ts",
"build": "bun run build:win && bun run build:linux && bun run build:mac",
"build:win": "bun build ./src/index.ts --compile --target=bun-windows-x64-modern --outfile ./target/replay_downloader-windows-x64",
"build:linux": "bun build ./src/index.ts --compile --target=bun-linux-x64-modern --outfile ./target/replay_downloader-linux-x64",
"build:mac": "bun build ./src/index.ts --compile --target=bun-darwin-x64 --outfile ./target/replay_downloader-darwin-x64"
},
"devDependencies": {
"@types/bun": "latest",
"@types/chalk": "^2.2.4"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@better-fetch/fetch": "^1.1.18",
"chalk": "^5.4.1",
"inquirer": "^12.9.0",
"ky": "^1.8.2",
"ora": "^8.2.0"
}
}