File tree 7 files changed +10
-10
lines changed
7 files changed +10
-10
lines changed File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 44
44
"watch" : " npm run build:esbuild -- --watch" ,
45
45
"build" : " npm run build:bun && npm run types" ,
46
46
"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" ,
48
48
"test" : " bun test" ,
49
49
"release" : " release-it" ,
50
50
"types" : " tsc -p tsconfig.build.json" ,
51
51
"preversion" : " npm run build"
52
52
},
53
53
"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 " ,
56
56
"@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 " ,
59
59
"spark-md5" : " ^3.0.2"
60
60
},
61
61
"release-it" : {
70
70
"node" : " >=18"
71
71
},
72
72
"engineStrict" : false
73
- }
73
+ }
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ import type {
7
7
AlbumList2 ,
8
8
ArtistInfo ,
9
9
ArtistInfo2 ,
10
- ArtistsID3 ,
11
10
ArtistWithAlbumsID3 ,
11
+ ArtistsID3 ,
12
12
Bookmarks ,
13
13
ChatMessages ,
14
14
Directory ,
@@ -19,9 +19,9 @@ import type {
19
19
MusicFolders ,
20
20
NewestPodcasts ,
21
21
NowPlaying ,
22
+ PlayQueue ,
22
23
Playlist ,
23
24
Playlists ,
24
- PlayQueue ,
25
25
Podcasts ,
26
26
ScanStatus ,
27
27
SearchResult2 ,
Original file line number Diff line number Diff line change 1
1
export function arrayBufferToBase64 ( bytes : Uint8Array ) {
2
- if ( typeof globalThis . Buffer !== "undefined" && Buffer . isEncoding ( ' base64url' ) ) {
2
+ if ( typeof globalThis . Buffer !== "undefined" && Buffer . isEncoding ( " base64url" ) ) {
3
3
return Buffer . from ( bytes ) . toString ( "base64url" ) ;
4
4
}
5
5
Original file line number Diff line number Diff line change 25
25
"include" : [
26
26
" **/src/**/*" ,
27
27
" **/__tests__/**/*" ,
28
- " example /**/*"
28
+ " examples /**/*"
29
29
],
30
30
"exclude" : [
31
31
" node_modules" ,
You can’t perform that action at this time.
0 commit comments