-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@qodestack/dl-yt-playlist",
"module": "./dist/main.js",
"main": "./dist/main.js",
"type": "module",
"version": "8.2.0",
"exports": {
".": {
"import": {
"types": "./dist/main.d.ts",
"default": "./dist/main.js"
}
},
"./schemas": {
"import": {
"types": "./dist/schemas.d.ts",
"default": "./dist/schemas.js"
}
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"typecheck": "bun tsc --noEmit",
"build": "bun build.ts",
"publishPackage": "npm run typecheck && npm run build && npm publish",
"test": "bun test --timeout=30000 --bail=1 ./test/test.ts",
"check": "biome check",
"check:fix": "biome check --write .",
"lint": "biome lint",
"lint:fix": "biome lint --write .",
"format": "biome format",
"format:fix": "biome format --write ."
},
"description": "Download all videos (or audio only) from a YouTube playlist!",
"repository": {
"type": "git",
"url": "git+https://github.com/qodesmith/dl-yt-playlist.git"
},
"keywords": ["download", "youtube", "playlist"],
"author": "Qodesmith",
"license": "ISC",
"bugs": {
"url": "https://github.com/qodesmith/dl-yt-playlist/issues"
},
"homepage": "https://github.com/qodesmith/dl-yt-playlist#readme",
"prettier": "@qodestack/prettier-config",
"dependencies": {
"@googleapis/youtube": "^30.3.0",
"@qodestack/utils": "^2.28.0",
"cli-progress": "^3.12.0",
"valibot": "^1.2.0"
},
"devDependencies": {
"@qodestack/biome-config": "^2.3.1",
"@types/cli-progress": "^3.11.6",
"bun-plugin-dts": "^0.3.0",
"bun-types": "latest",
"dotenv": "^17.2.3",
"globals": "^17.0.0",
"googleapis-common": "^8.0.1"
}
}