-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
97 lines (97 loc) · 2.27 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "ytdl-mp3",
"type": "module",
"version": "5.2.1",
"packageManager": "[email protected]",
"description": "An NPM package to facilitate downloading music from YouTube, including automatic retrieval of ID3 tags and album art via the iTunes public API.",
"author": "Joshua Unrau",
"license": "MIT",
"homepage": "https://github.com/joshunrau/ytdl-mp3#readme",
"repository": {
"type": "git",
"url": "https://github.com/joshunrau/ytdl-mp3.git"
},
"bugs": {
"url": "https://github.com/joshunrau/ytdl-mp3/issues"
},
"keywords": [
"youtube",
"download",
"mp3",
"music"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"ytdl-mp3": "./bin/ytdl-mp3.cjs"
},
"files": [
"LICENSE",
"README.md",
"bin",
"dist",
"package.json"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsup",
"clean": "rm -rf coverage dist node_modules",
"format": "prettier --write src",
"lint": "tsc && eslint --fix src",
"prepare": "husky",
"test": "vitest",
"test:coverage": "vitest --coverage"
},
"dependencies": {
"@distube/ytdl-core": "^4.16.0",
"axios": "^1.7.9",
"commander": "^12.1.0",
"ffmpeg-static": "^5.2.0",
"node-id3": "0.2.5"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@joshunrau/eslint-config": "^4.3.3",
"@joshunrau/prettier-config": "^0.4.0",
"@joshunrau/semantic-release": "^0.1.4",
"@joshunrau/tsconfig": "^0.0.4",
"@types/ffmpeg-static": "^3.0.3",
"@types/node": "^20.14.5",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.57.0",
"husky": "^9.1.5",
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"typescript": "~5.5.4",
"vitest": "^2.0.5"
},
"prettier": "@joshunrau/prettier-config",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"extends": [
"@joshunrau/semantic-release"
]
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"undici": "7.x"
}
}
}
}