-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "tidal-music-api",
"version": "1.2.1",
"description": "Interact with the Tidal API to retrieve music information such as tracks, artists, albums, videos, playlists, and mixes by URL.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"format:src": "prettier --write 'src/**/*.ts'",
"format:lib": "prettier --write 'lib/**/*.js'",
"test": "node ex/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LakhindarPal/tidal-music-api.git"
},
"keywords": [
"tidal",
"api",
"tidal-music-api",
"tidal-api",
"tidal-api-wrapper",
"music",
"tidalapi",
"tidalpromise",
"opentidal",
"ts-tidal-api",
"scrapper",
"tidal-info"
],
"author": "Lakhindar Pal",
"license": "MIT",
"bugs": {
"url": "https://github.com/LakhindarPal/tidal-music-api/issues"
},
"homepage": "https://github.com/LakhindarPal/tidal-music-api/wiki",
"devDependencies": {
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"dependencies": {
"itty-fetcher": "^0.9.4"
}
}