metadata-connect 1.1.0 → 1.1.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 +10 -1
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -190,7 +190,16 @@ Contributions are welcome! Please feel free to submit a Pull Request.
|
|
|
190
190
|
|
|
191
191
|
MIT License - see [LICENSE](LICENSE) for details.
|
|
192
192
|
|
|
193
|
-
## Related
|
|
193
|
+
## Related Packages
|
|
194
|
+
|
|
195
|
+
- [alphatheta-connect](https://github.com/chrisle/alphatheta-connect) — Pioneer Pro DJ Link integration
|
|
196
|
+
- [stagelinq](https://github.com/chrisle/stagelinq) — Denon StageLinq protocol integration
|
|
197
|
+
- [rekordbox-connect](https://github.com/chrisle/rekordbox-connect) — Rekordbox database integration
|
|
198
|
+
- [serato-connect](https://github.com/chrisle/serato-connect) — Serato DJ integration
|
|
199
|
+
|
|
200
|
+
These libraries power [Now Playing](https://nowplayingapp.com) — a real-time track display app for DJs and streamers.
|
|
201
|
+
|
|
202
|
+
## See Also
|
|
194
203
|
|
|
195
204
|
- [music-metadata](https://github.com/borewit/music-metadata) - Full-featured audio metadata library (requires full file access)
|
|
196
205
|
- [node-id3](https://github.com/Zazama/node-id3) - ID3 tag reader/writer for Node.js
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "metadata-connect",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "Extract audio metadata (title, artist, album, BPM, key, artwork) from MP3, M4A, FLAC, and AIFF files with minimal network transfer using partial file reads",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -71,5 +71,8 @@
|
|
|
71
71
|
"@vitest/coverage-v8": "^4.0.16",
|
|
72
72
|
"typescript": "^5.9.3",
|
|
73
73
|
"vitest": "^4.0.16"
|
|
74
|
+
},
|
|
75
|
+
"overrides": {
|
|
76
|
+
"rollup": ">=4.59.0"
|
|
74
77
|
}
|
|
75
78
|
}
|