Skip to content

Commit a6c9509

Browse files
chore: update deps
Signed-off-by: Henry Gressmann <[email protected]>
1 parent 63219b8 commit a6c9509

File tree

3 files changed

+25
-54
lines changed

3 files changed

+25
-54
lines changed

package.json

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,9 @@
1111
"type": "git",
1212
"url": "git+https://github.com/explodingcamera/subsonic-api.git"
1313
},
14-
"keywords": [
15-
"subsonic",
16-
"api",
17-
"music",
18-
"streaming",
19-
"media",
20-
"player",
21-
"client",
22-
"typescript"
23-
],
14+
"keywords": ["subsonic", "api", "music", "streaming", "media", "player", "client", "typescript"],
2415
"homepage": "https://github.com/explodingcamera/subsonic-api",
25-
"files": [
26-
"lib",
27-
"README.md",
28-
"LICENSE.md"
29-
],
16+
"files": ["lib", "README.md", "LICENSE.md"],
3017
"exports": {
3118
".": "./lib/index.js"
3219
},
@@ -57,8 +44,5 @@
5744
"node": ">=18"
5845
},
5946
"engineStrict": false,
60-
"trustedDependencies": [
61-
"@biomejs/biome",
62-
"esbuild"
63-
]
47+
"trustedDependencies": ["@biomejs/biome", "esbuild"]
6448
}

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { md5 } from "./md5.js";
22
import { arrayBufferToBase64 } from "./utils.js";
33

44
// biome-ignore format:
5-
import type { AlbumID3, AlbumInfo, AlbumList, AlbumList2, AlbumWithSongsID3, ArtistInfo, ArtistInfo2, ArtistWithAlbumsID3, ArtistsID3, Bookmarks, ChatMessages, Child, Directory, Genres, Indexes, InternetRadioStations, JukeboxPlaylist, JukeboxStatus, License, Lyrics, MusicFolders, NewestPodcasts, NowPlaying, OpenSubsonicExtensions, PlayQueue, Playlist, PlaylistWithSongs, Playlists, Podcasts, ScanStatus, SearchResult2, SearchResult3, Shares, SimilarSongs, SimilarSongs2, Songs, Starred, Starred2, StructuredLyrics, TopSongs, User, Users, VideoInfo, Videos } from "./types.js";
5+
import type { AlbumInfo, AlbumList, AlbumList2, AlbumWithSongsID3, ArtistInfo, ArtistInfo2, ArtistWithAlbumsID3, ArtistsID3, Bookmarks, ChatMessages, Child, Directory, Genres, Indexes, InternetRadioStations, JukeboxPlaylist, JukeboxStatus, License, Lyrics, MusicFolders, NewestPodcasts, NowPlaying, OpenSubsonicExtensions, PlayQueue, Playlist, PlaylistWithSongs, Playlists, Podcasts, ScanStatus, SearchResult2, SearchResult3, Shares, SimilarSongs, SimilarSongs2, Songs, Starred, Starred2, StructuredLyrics, TopSongs, User, Users, VideoInfo, Videos } from "./types.js";
66
export * from "./types.js";
77

88
interface SubsonicConfig {

tsconfig.json

Lines changed: 21 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,22 @@
11
{
2-
"compilerOptions": {
3-
"strict": true,
4-
"skipLibCheck": true,
5-
"forceConsistentCasingInFileNames": true,
6-
"jsx": "react",
7-
"target": "ES2017",
8-
"moduleResolution": "node",
9-
"allowSyntheticDefaultImports": true,
10-
"resolveJsonModule": true,
11-
"esModuleInterop": true,
12-
"lib": [
13-
"DOM",
14-
"ESNext"
15-
],
16-
"module": "ESNext",
17-
"outDir": "./lib",
18-
"allowJs": true,
19-
"checkJs": false,
20-
"declaration": true,
21-
"types": [
22-
"bun-types"
23-
]
24-
},
25-
"include": [
26-
"**/src/**/*",
27-
"**/__tests__/**/*",
28-
"examples/**/*",
29-
"src/tests/.test.ts"
30-
],
31-
"exclude": [
32-
"node_modules",
33-
"lib"
34-
]
35-
}
2+
"compilerOptions": {
3+
"strict": true,
4+
"skipLibCheck": true,
5+
"forceConsistentCasingInFileNames": true,
6+
"jsx": "react",
7+
"target": "ES2017",
8+
"moduleResolution": "node",
9+
"allowSyntheticDefaultImports": true,
10+
"resolveJsonModule": true,
11+
"esModuleInterop": true,
12+
"lib": ["DOM", "ESNext"],
13+
"module": "ESNext",
14+
"outDir": "./lib",
15+
"allowJs": true,
16+
"checkJs": false,
17+
"declaration": true,
18+
"types": ["bun-types"]
19+
},
20+
"include": ["**/src/**/*", "**/__tests__/**/*", "examples/**/*", "src/tests/.test.ts"],
21+
"exclude": ["node_modules", "lib"]
22+
}

0 commit comments

Comments
 (0)