-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
53 lines (53 loc) · 1.34 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
{
"name": "spotifydl-core",
"version": "0.2.0",
"description": "Spotify downloader for node",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"types": "dist",
"scripts": {
"build": "tsc -p .",
"test": "node tests",
"docs": "typedoc",
"prepare": "npm run build",
"prettier-format": "prettier --config .prettierrc \"src/**/*.ts\" --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alensaito1/spotifydl-core.git"
},
"keywords": [
"spotify",
"spotify-downloader",
"music"
],
"author": "Alen Yohannan",
"license": "MIT",
"bugs": {
"url": "https://github.com/alensaito1/spotifydl-core/issues"
},
"homepage": "https://github.com/alensaito1/spotifydl-core#readme",
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.21",
"@types/fs-extra": "^11.0.1",
"@types/node": "^15.3.0",
"@types/spotify-web-api-node": "^5.0.7",
"@types/yt-search": "^2.3.2",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.38.0",
"prettier": "^2.8.7",
"typedoc": "^0.24.0",
"typescript": "^5.0.4"
},
"dependencies": {
"axios": "^1.3.5",
"fluent-ffmpeg": "^2.1.2",
"fs-extra": "^11.1.1",
"spotify-web-api-node": "^5.0.2",
"yt-search": "^2.10.4",
"ytdl-core": "^4.11.3"
}
}