-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
69 lines (69 loc) · 1.6 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
{
"name": "bv2mp3",
"version": "3.1.0",
"description": "A tool to download all videos and convert to mp3 inside a video set of bilibili (also works for single video, of course).",
"bin": "index.js",
"type": "module",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/wxsms/bilibili-video2mp3.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/wxsms/bilibili-video2mp3/issues"
},
"homepage": "https://github.com/wxsms/bilibili-video2mp3",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"lint": "npx eslint . --fix",
"changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s -r 0"
},
"dependencies": {
"@ffmpeg/core": "0.11.0",
"@ffmpeg/ffmpeg": "0.11.6",
"axios": "1.7.7",
"commander": "11.1.0",
"filenamify": "6.0.0",
"lodash-es": "4.17.21",
"minimist": "1.2.8",
"multi-progress": "4.0.0",
"progress": "2.0.3"
},
"devDependencies": {
"conventional-changelog-cli": "4.1.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"prettier": "3.3.3"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"prettier"
],
"plugins": [
"prettier"
],
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"rules": {
"prettier/prettier": [
"error",
{
"semi": true,
"singleQuote": true,
"endOfLine": "auto"
}
]
}
}
}