-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.72 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
69
70
71
72
{
"name": "bc-dlp",
"version": "2.0.0",
"description": "Wrapper around yt-dlp with a few utilities for downloading the latest version for breadcrum.net",
"files": [
"*.js",
"lib/*.js"
],
"type": "module",
"module": "index.js",
"exports": {
"import": "./index.js"
},
"scripts": {
"prepublishOnly": "git push --follow-tags && gh-release -y",
"test": "run-s test:*",
"test-skip:standard": "standard",
"test:tap": "tap",
"version": "run-s version:*",
"version:changelog": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:'",
"version:git": "git add CHANGELOG.md"
},
"author": "Bret Comnes <[email protected]> (https://bret.io)",
"bugs": {
"url": "https://github.com/hifiwi-fi/bc-dlp/issues"
},
"homepage": "https://github.com/hifiwi-fi/bc-dlp",
"repository": {
"type": "git",
"url": "https://github.com/hifiwi-fi/bc-dlp.git"
},
"keywords": [
"youtube-dl",
"youtube-dl-wrapper",
"youtube-downloader",
"nodejs",
"yt-dlp",
"yt-dlp-wrapper"
],
"license": "MIT",
"devDependencies": {
"auto-changelog": "^2.0.0",
"gh-release": "^7.0.0",
"npm-run-all2": "^7.0.1",
"standard": "^17.0.0",
"tap": "^21.0.0",
"p-temporary-directory": "^2.0.1"
},
"dependencies": {
"octokit": "^3.0.0",
"undici": "^7.0.0",
"webassert": "^3.0.2"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/bcomnes"
},
"tap": {
"serial": [],
"typecheck": false,
"allow-incomplete-coverage": true,
"timeout": 1200000,
"coverage-report": [
"text",
"lcovonly"
]
},
"engines": {
"node": ">=20",
"npm": ">=10"
}
}