-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.77 KB
/
package.json
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
65
66
67
68
{
"name": "@qodestack/dl-yt-playlist",
"module": "./dist/main.js",
"main": "./dist/main.js",
"type": "module",
"version": "8.1.1",
"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"
},
"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": "^20.0.0",
"@qodestack/utils": "^2.8.0",
"cli-progress": "^3.12.0",
"valibot": "^0.36.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@qodestack/prettier-config": "^1.0.2",
"@types/cli-progress": "^3.11.6",
"@typescript-eslint/parser": "^8.17.0",
"bun-plugin-dts": "^0.3.0",
"bun-types": "latest",
"dotenv": "^16.4.7",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"globals": "^15.12.0",
"typescript-eslint": "^8.16.0"
}
}