Skip to content

Commit a3be776

Browse files
committed
chore: update packages and prepare for release
1 parent e58847e commit a3be776

File tree

6 files changed

+146
-102
lines changed

6 files changed

+146
-102
lines changed

bun.lock

Lines changed: 128 additions & 88 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "steam-types",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"author": "BossSloth",
55
"description": "TypeScript type definitions for the Steam client",
66
"types": "dist/index.d.ts",
@@ -33,32 +33,32 @@
3333
],
3434
"license": "MIT",
3535
"devDependencies": {
36-
"@eslint/js": "^9.23.0",
36+
"@eslint/js": "^9.24.0",
3737
"@semantic-release/git": "^10.0.1",
3838
"@stylistic/eslint-plugin": "^4.2.0",
3939
"@types/chrome-remote-interface": "^0.31.14",
4040
"@types/diff": "^7.0.2",
41-
"@types/node": "^22.13.14",
42-
"@vitest/coverage-v8": "^3.0.9",
41+
"@types/node": "^22.14.1",
42+
"@vitest/coverage-v8": "^3.1.1",
4343
"ansi-regex": "^6.1.0",
4444
"chalk": "^5.4.1",
4545
"chrome-remote-interface": "^0.33.3",
4646
"commander": "^13.1.0",
4747
"dedent": "^1.5.3",
4848
"diff": "^7.0.0",
49-
"esbuild": "^0.25.1",
50-
"eslint": "^9.23.0",
51-
"eslint-plugin-perfectionist": "^4.10.1",
49+
"esbuild": "^0.25.2",
50+
"eslint": "^9.24.0",
51+
"eslint-plugin-perfectionist": "^4.11.0",
5252
"globals": "^16.0.0",
53-
"knip": "^5.46.3",
53+
"knip": "^5.50.2",
5454
"semantic-release": "^24.2.3",
5555
"ts-morph": "^25.0.1",
56-
"typescript": "^5.8.2",
57-
"typescript-eslint": "^8.28.0",
58-
"vitest": "^3.0.9"
56+
"typescript": "^5.8.3",
57+
"typescript-eslint": "^8.29.1",
58+
"vitest": "^3.1.1"
5959
},
6060
"dependencies": {
61-
"@types/react-dom": "^19.1.1",
61+
"@types/react-dom": "^19.1.2",
6262
"long": "^5.3.1",
6363
"mobx": "^6.13.7"
6464
},

scripts/convert-to-typescript/prop-type-detection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ function isIterable(value: unknown): value is Iterable<unknown> {
211211
* Checks for non-generic object types and returns their TypeScript type
212212
*/
213213
// eslint-disable-next-line complexity
214-
export function getPrimitiveObjectTypes(obj: unknown, addImport = true): string | null {
214+
function getPrimitiveObjectTypes(obj: unknown, addImport = true): string | null {
215215
if (Long.isLong(obj)) {
216216
if (addImport) context.addImport('long', 'Long', true);
217217

src/types/Global/AppActivityStore.old.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import Long from 'long';
12
import { ObservableMap } from 'mobx';
23
import { GameSessions } from '../SteamClient';
34
import { JsPbMessage } from '../SteamClient/shared';

src/types/Global/Shared.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import Long from 'long';
2+
13
export interface SteamId {
24
BIsClanAccount(): boolean;
35

src/types/SteamClient/Overlay.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import type { EBrowserType, ESteamRealm, EUIComposition, EUIMode, Unregisterable } from './shared';
1+
import { EBrowserType } from '../Global/PopupManager';
2+
import type { ESteamRealm, EUIComposition, EUIMode, Unregisterable } from './shared';
23

34
export interface Overlay {
45
/**

0 commit comments

Comments
 (0)