UNPKG

1.53 kBJSONView Raw
1{
2 "name": "node-youtube-music",
3 "description": "Unofficial YouTube Music API for Node.js",
4 "version": "0.8.1",
5 "main": "dist/src/index.js",
6 "types": "dist/src/index.d.ts",
7 "repository": "https://github.com/baptisteArno/node-youtube-music",
8 "publishConfig": {
9 "registry": "https://registry.npmjs.org/"
10 },
11 "author": "Baptiste Arnaud <contact@baptiste-arnaud.fr>",
12 "license": "MIT",
13 "devDependencies": {
14 "@types/jest": "^26.0.21",
15 "@typescript-eslint/eslint-plugin": "^4.18.0",
16 "@typescript-eslint/parser": "^4.18.0",
17 "eslint": "^7.22.0",
18 "eslint-config-airbnb-base": "^14.2.1",
19 "eslint-config-prettier": "^8.1.0",
20 "eslint-plugin-import": "^2.22.1",
21 "jest": "^26.6.3",
22 "prettier": "^2.2.1",
23 "ts-jest": "^26.5.4",
24 "typescript": "^4.2.3"
25 },
26 "scripts": {
27 "start:example:search": "yarn build && node dist/examples/search",
28 "start:example:suggestions": "yarn build && node dist/examples/getSuggestions",
29 "start:example:searchPlaylists": "yarn build && node dist/examples/searchPlaylists",
30 "start:example:searchAlbums": "yarn build && node dist/examples/searchAlbums",
31 "start:example:searchArtists": "yarn build && node dist/examples/searchArtists",
32 "start:example:getPlaylist": "yarn build && node dist/examples/getPlaylist",
33 "start:example:getAlbum": "yarn build && node dist/examples/getAlbum",
34 "build": "eslint src/**/* examples/**/* && tsc",
35 "test": "yarn build && jest"
36 },
37 "dependencies": {
38 "got": "^11.8.2"
39 }
40}