-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 2.19 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
{
"name": "daunroda",
"version": "1.1.3",
"license": "MIT",
"description": "A simple yet efficient Spotify to YouTube Music Downloader",
"author": "Alex Kovacs (alexdemaster@proton.me)",
"main": "dist/index.js",
"bin": "dist/bin/index.js",
"scripts": {
"build": "tsc",
"start": "yarn build && node dist/bin/index.js",
"dev": "yarn build && node dist/bin/index.js --v",
"lint": "eslint src --fix --ext ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepack": "yarn lint && yarn format && yarn build"
},
"dependencies": {
"@sapphire/stopwatch": "^1.4.1",
"@skyra/jaro-winkler": "^1.1.0",
"cli-progress": "^3.11.2",
"colorette": "^2.0.19",
"ffmpeg-static": "^5.1.0",
"fluent-ffmpeg": "^2.1.2",
"hyperlinker": "^1.0.0",
"inquirer": "^8.2.4",
"inquirer-select-directory": "^1.2.0",
"sanitize-filename": "^1.6.3",
"spotify-web-api-node": "^5.0.2",
"undici": "^5.10.0",
"youtubei.js": "^2.2.1",
"ytdl-core": "^4.11.2"
},
"devDependencies": {
"@sapphire/eslint-config": "^4.3.8",
"@sapphire/prettier-config": "^1.4.4",
"@sapphire/ts-config": "^3.3.4",
"@types/cli-progress": "^3.11.0",
"@types/fluent-ffmpeg": "^2.1.20",
"@types/inquirer": "^9.0.1",
"@types/node": "^18.7.18",
"@types/spotify-web-api-node": "^5.0.7",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"all-contributors-cli": "^6.20.4",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"typescript": "^4.8.3"
},
"resolutions": {
"@types/spotify-api": "^0.0.17"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.d.ts.map"
],
"repository": {
"type": "git",
"url": "git+https://github.com/daunroda/daunroda-cli.git"
},
"keywords": [
"spotify",
"youtube-music",
"spotify-downloader",
"youtube-music-downloader"
],
"bugs": {
"url": "https://github.com/daunroda/daunroda-cli/issues"
},
"homepage": "https://github.com/daunroda/daunroda-cli#readme",
"eslintConfig": {
"extends": "@sapphire"
},
"packageManager": "yarn@3.2.3"
}