-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 911 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 911 Bytes
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
{
"name": "deezer-api-ts",
"version": "1.2.4",
"description": "🥁 Node.js library for Deezer Public API",
"main": "dist/index.js",
"repository": "https://github.com/tanukijs/deezer-api-ts",
"author": {
"name": "tanukijs",
"email": "tanuki.contact@gmail.com",
"url": "https://github.com/tanukijs"
},
"license": "MIT",
"keywords": [
"api",
"deezer",
"spotify",
"deezer-api",
"spotify-api",
"deezer wrapper",
"deezer sdk",
"deezer helper",
"track api",
"song api"
],
"dependencies": {
"got": "^11.8.2"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"@types/node": "^15.12.2",
"rimraf": "^3.0.2",
"tslib": "^2.3.0",
"typescript": "^4.3.4"
},
"scripts": {
"build": "rimraf dist/ && tsc",
"watch": "rimraf dist/ && tsc --watch"
},
"volta": {
"node": "22.2.0",
"yarn": "4.2.2"
}
}