-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.96 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
{
"name": "super-yt-mp3",
"version": "0.0.8",
"description": "CLI tools for converting YouTube videos to MP3 files. Extract timestamps from video chapters, description, comments and automatically splits output into appropriately named files.",
"author": "Tim Mikeladze <[email protected]>",
"keywords": [
"youtube",
"mp3",
"youtube downloader",
"chapters",
"timestamps",
"mp3",
"youtube mp3"
],
"repository": {
"type": "git",
"url": "https://github.com/TimMikeladze/super-yt-mp3.git"
},
"license": "MIT",
"files": [
"dist"
],
"type": "module",
"source": "src/index.ts",
"exports": {
"require": "dist/index.cjs",
"default": "dist/index.modern.js"
},
"main": "dist/index.cjs",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"bin": "dist/cli.modern.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "microbundle watch src/{index,cli}.ts",
"build": "microbundle src/{index,cli}.ts",
"lint": "eslint --fix {src,__tests__}/**/*.ts",
"test": "jest --coverage"
},
"lint-staged": {
"*.ts": "eslint --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@types/fluent-ffmpeg": "2.1.20",
"@types/jest": "27.5.0",
"@typescript-eslint/eslint-plugin": "5.22.0",
"@typescript-eslint/parser": "5.22.0",
"eslint": "8.14.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "12.4.1",
"microbundle": "0.15.0",
"ts-jest": "27.1.4",
"typescript": "4.6.4"
},
"dependencies": {
"@freetube/yt-comment-scraper": "6.1.0",
"commander": "9.2.0",
"fluent-ffmpeg": "2.1.2",
"get-artist-title": "1.3.1",
"get-youtube-chapters": "1.1.0",
"isomorphic-fetch": "3.0.0",
"node-id3": "0.2.3",
"ytdl-core": "4.11.0"
}
}