@jjdenhertog/plex-music-search 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -2
- package/package.json +2 -3
package/README.md
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
[](https://www.buymeacoffee.com/jjdenhertog)
|
5
5
|
|
6
|
-
The `plex-music-search` library provides tools for searching
|
6
|
+
The `plex-music-search` library provides tools for searching tracks within a Plex music library, building on the functionality of [music-search](https://github.com/jjdenhertog/music-search) with Plex-specific configurations. It can handle track searches efficiently by caching repeated search queries.
|
7
7
|
|
8
8
|
## Table of Contents
|
9
9
|
- [Installation](#installation)
|
@@ -11,7 +11,6 @@ The `plex-music-search` library provides tools for searching and analyzing track
|
|
11
11
|
- [Default Settings](#default-settings)
|
12
12
|
- [Configuration Options](#configuration-options)
|
13
13
|
- [Getting Plex URI and Token](#getting-plex-uri-and-token)
|
14
|
-
- [Examples](#examples)
|
15
14
|
- [Support](#support)
|
16
15
|
|
17
16
|
## Installation
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@jjdenhertog/plex-music-search",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.2",
|
4
4
|
"description": "Library to find tracks in your Plex Library",
|
5
5
|
"keywords": [
|
6
6
|
"plex",
|
@@ -8,7 +8,6 @@
|
|
8
8
|
"search"
|
9
9
|
],
|
10
10
|
"homepage": "https://github.com/jjdenhertog/plex-music-search",
|
11
|
-
"main": "dist/index.js",
|
12
11
|
"license": "MIT",
|
13
12
|
"scripts": {
|
14
13
|
"deploy": "tsc && npm version patch --no-git-tag-version && cp package.json ./dist && cp README.md ./dist && cd dist && npm publish --access public",
|
@@ -19,7 +18,7 @@
|
|
19
18
|
"npm": ">=10.0.0"
|
20
19
|
},
|
21
20
|
"dependencies": {
|
22
|
-
"@jjdenhertog/music-search": "^1.0.
|
21
|
+
"@jjdenhertog/music-search": "^1.0.6",
|
23
22
|
"axios": "^1.4.0",
|
24
23
|
"qs": "^6.12.0",
|
25
24
|
"string-similarity-js": "^2.1.4"
|