File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 4444 "watch" : " npm run build:esbuild -- --watch" ,
4545 "build" : " npm run build:bun && npm run types" ,
4646 "build:bun" : " bun build ./src/index.ts --minify --outdir=lib --target=node --external:crypto --format=esm" ,
47- "dev" : " bun example/test .ts" ,
47+ "dev" : " bun examples/index .ts" ,
4848 "test" : " bun test" ,
4949 "release" : " release-it" ,
5050 "types" : " tsc -p tsconfig.build.json" ,
5151 "preversion" : " npm run build"
5252 },
5353 "devDependencies" : {
54- "@biomejs/biome" : " ^1.4.1 " ,
55- "@biomejs/cli-linux-x64" : " ^1.4.1 " ,
54+ "@biomejs/biome" : " ^1.5.0 " ,
55+ "@biomejs/cli-linux-x64" : " ^1.5.0 " ,
5656 "@types/spark-md5" : " ^3.0.4" ,
57- "bun-types" : " ^1.0.15 " ,
58- "release-it" : " ^17.0.0 " ,
57+ "bun-types" : " ^1.0.21 " ,
58+ "release-it" : " ^17.0.1 " ,
5959 "spark-md5" : " ^3.0.2"
6060 },
6161 "release-it" : {
7070 "node" : " >=18"
7171 },
7272 "engineStrict" : false
73- }
73+ }
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ import type {
77 AlbumList2 ,
88 ArtistInfo ,
99 ArtistInfo2 ,
10- ArtistsID3 ,
1110 ArtistWithAlbumsID3 ,
11+ ArtistsID3 ,
1212 Bookmarks ,
1313 ChatMessages ,
1414 Directory ,
@@ -19,9 +19,9 @@ import type {
1919 MusicFolders ,
2020 NewestPodcasts ,
2121 NowPlaying ,
22+ PlayQueue ,
2223 Playlist ,
2324 Playlists ,
24- PlayQueue ,
2525 Podcasts ,
2626 ScanStatus ,
2727 SearchResult2 ,
Original file line number Diff line number Diff line change 11export function arrayBufferToBase64 ( bytes : Uint8Array ) {
2- if ( typeof globalThis . Buffer !== "undefined" && Buffer . isEncoding ( ' base64url' ) ) {
2+ if ( typeof globalThis . Buffer !== "undefined" && Buffer . isEncoding ( " base64url" ) ) {
33 return Buffer . from ( bytes ) . toString ( "base64url" ) ;
44 }
55
Original file line number Diff line number Diff line change 2525 "include" : [
2626 " **/src/**/*" ,
2727 " **/__tests__/**/*" ,
28- " example /**/*"
28+ " examples /**/*"
2929 ],
3030 "exclude" : [
3131 " node_modules" ,
You can’t perform that action at this time.
0 commit comments