tiktok-downloader-cli
Version:
A fast CLI tool to download highest quality TikTok videos without watermarks
58 lines (57 loc) • 1.46 kB
JSON
{
"name": "tiktok-downloader-cli",
"version": "1.1.0",
"description": "A fast CLI tool to download highest quality TikTok videos without watermarks",
"main": "src/index.ts",
"type": "module",
"bin": {
"td": "./src/index.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/sgtresor/tiktok-downloader-cli.git"
},
"homepage": "https://github.com/sgtresor/tiktok-downloader-cli#readme",
"bugs": {
"url": "https://github.com/sgtresor/tiktok-downloader-cli/issues"
},
"files": [
"src/"
],
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun",
"build:binary": "bun build src/index.ts --compile --outfile td",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist td",
"test": "bun test",
"test:watch": "bun test --watch",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"prepublishOnly": "bun run type-check && bun run lint && bun test",
"publish:npm": "npm publish"
},
"keywords": [
"tiktok",
"downloader",
"cli",
"video",
"no-watermark",
"high-quality",
"bun"
],
"author": "sgtresor",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.1.3",
"@types/bun": "latest",
"typescript": "^5.0.0"
},
"peerDependencies": {
"bun": ">=1.0.0"
}
}