-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.32 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.32 KB
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
{
"name": "spotituby",
"version": "1.0.2",
"main": "index.js",
"type": "module",
"scripts": {
"app": "lsof -i :3000 -t | xargs kill && source ./.venv/bin/activate && node --no-warnings ./index.js",
"setup": "node scripts/setup.js",
"start": "node index.js",
"doc": "jsdoc2md src/utils/index.js > API.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FrenzyExists/spotituby.git"
},
"author": "Detective Pikachu",
"license": "MIT",
"description": "Download music from Spotify and Youtube playlists or tracks",
"devDependencies": {
"jest": "^29.7.0",
"jsdoc-to-markdown": "^9.1.1"
},
"bin": {
"spotituby": "./bin/spotituby.js"
},
"keywords": [
"music",
"downloader",
"spotify",
"youtube",
"mp3",
"cli",
"hobby project"
],
"dependencies": {
"@distube/ytdl-core": "^4.15.1",
"@inquirer/prompts": "^7.1.0",
"axios": "^1.7.7",
"chokidar": "^4.0.1",
"cli-progress": "^3.12.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"JSONStream": "^1.3.5",
"kill-port": "^2.0.1",
"node-fetch": "^3.3.2",
"node-id3": "^0.2.6",
"open": "^10.1.0",
"puppeteer": "^23.9.0",
"valid-url": "^1.0.9"
},
"engines": {
"node": ">=14.0.0",
"python": ">=3.12.0"
}
}