@socketsecurity/sdk 3.3.0 → 3.4.0

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.
@@ -112,7 +112,7 @@ export declare class SocketSdk {
112
112
  *
113
113
  * @see https://docs.socket.dev/reference/createorgfullscan
114
114
  * @apiEndpoint POST /orgs/{org_slug}/full-scans
115
- * @quota 1 unit
115
+ * @quota 0 units
116
116
  * @scopes full-scans:create
117
117
  * @throws {Error} When server returns 5xx status codes
118
118
  */
@@ -121,9 +121,42 @@ export declare class SocketSdk {
121
121
  * Create a diff scan from two full scan IDs.
122
122
  * Compares two existing full scans to identify changes.
123
123
  *
124
+ * @param orgSlug - Organization identifier
125
+ * @param options - Diff scan creation options
126
+ * @param options.after - ID of the after/head full scan (newer)
127
+ * @param options.before - ID of the before/base full scan (older)
128
+ * @param options.description - Description of the diff scan
129
+ * @param options.external_href - External URL to associate with the diff scan
130
+ * @param options.merge - Set true for merged commits, false for open PR diffs
131
+ * @returns Diff scan details
132
+ *
133
+ * @example
134
+ * ```typescript
135
+ * const result = await sdk.createOrgDiffScanFromIds('my-org', {
136
+ * before: 'scan-id-1',
137
+ * after: 'scan-id-2',
138
+ * description: 'Compare versions',
139
+ * merge: false
140
+ * })
141
+ *
142
+ * if (result.success) {
143
+ * console.log('Diff scan created:', result.data.diff_scan.id)
144
+ * }
145
+ * ```
146
+ *
147
+ * @see https://docs.socket.dev/reference/createorgdiffscanfromids
148
+ * @apiEndpoint POST /orgs/{org_slug}/diff-scans/from-ids
149
+ * @quota 0 units
150
+ * @scopes diff-scans:create, full-scans:list
124
151
  * @throws {Error} When server returns 5xx status codes
125
152
  */
126
- createOrgDiffScanFromIds(orgSlug: string, queryParams?: QueryParams | undefined): Promise<SocketSdkResult<'createOrgDiffScanFromIds'>>;
153
+ createOrgDiffScanFromIds(orgSlug: string, options: {
154
+ after: string;
155
+ before: string;
156
+ description?: string | undefined;
157
+ external_href?: string | undefined;
158
+ merge?: boolean | undefined;
159
+ }): Promise<SocketSdkResult<'createOrgDiffScanFromIds'>>;
127
160
  /**
128
161
  * Create a full scan from an archive file (.tar, .tar.gz/.tgz, or .zip).
129
162
  * Uploads and scans a compressed archive of project files.
@@ -177,15 +210,22 @@ export declare class SocketSdk {
177
210
  * Registers a repository for monitoring and security scanning.
178
211
  *
179
212
  * @param orgSlug - Organization identifier
180
- * @param params - Repository configuration (name, description, homepage, etc.)
213
+ * @param repoSlug - Repository name/slug
214
+ * @param params - Additional repository configuration
215
+ * @param params.archived - Whether the repository is archived
216
+ * @param params.default_branch - Default branch of the repository
217
+ * @param params.description - Description of the repository
218
+ * @param params.homepage - Homepage URL of the repository
219
+ * @param params.visibility - Visibility setting ('public' or 'private')
220
+ * @param params.workspace - Workspace of the repository
181
221
  * @returns Created repository details
182
222
  *
183
223
  * @example
184
224
  * ```typescript
185
- * const result = await sdk.createRepository('my-org', {
186
- * name: 'my-repo',
225
+ * const result = await sdk.createRepository('my-org', 'my-repo', {
187
226
  * description: 'My project repository',
188
- * homepage: 'https://example.com'
227
+ * homepage: 'https://example.com',
228
+ * visibility: 'private'
189
229
  * })
190
230
  *
191
231
  * if (result.success) {
@@ -195,11 +235,18 @@ export declare class SocketSdk {
195
235
  *
196
236
  * @see https://docs.socket.dev/reference/createorgrepo
197
237
  * @apiEndpoint POST /orgs/{org_slug}/repos
198
- * @quota 1 unit
238
+ * @quota 0 units
199
239
  * @scopes repo:write
200
240
  * @throws {Error} When server returns 5xx status codes
201
241
  */
202
- createRepository(orgSlug: string, params?: QueryParams | undefined): Promise<RepositoryResult | StrictErrorResult>;
242
+ createRepository(orgSlug: string, repoSlug: string, params?: {
243
+ archived?: boolean | undefined;
244
+ default_branch?: null | string | undefined;
245
+ description?: null | string | undefined;
246
+ homepage?: null | string | undefined;
247
+ visibility?: 'private' | 'public' | undefined;
248
+ workspace?: string | undefined;
249
+ } | undefined): Promise<RepositoryResult | StrictErrorResult>;
203
250
  /**
204
251
  * Create a new repository label for an organization.
205
252
  *
@@ -221,7 +268,7 @@ export declare class SocketSdk {
221
268
  *
222
269
  * @see https://docs.socket.dev/reference/createorgrepolabel
223
270
  * @apiEndpoint POST /orgs/{org_slug}/repos/labels
224
- * @quota 1 unit
271
+ * @quota 0 units
225
272
  * @scopes repo-label:create
226
273
  * @throws {Error} When server returns 5xx status codes
227
274
  */
@@ -246,7 +293,7 @@ export declare class SocketSdk {
246
293
  *
247
294
  * @see https://docs.socket.dev/reference/deleteorgfullscan
248
295
  * @apiEndpoint DELETE /orgs/{org_slug}/full-scans/{full_scan_id}
249
- * @quota 1 unit
296
+ * @quota 0 units
250
297
  * @scopes full-scans:delete
251
298
  * @throws {Error} When server returns 5xx status codes
252
299
  */
@@ -290,7 +337,7 @@ export declare class SocketSdk {
290
337
  *
291
338
  * @see https://docs.socket.dev/reference/deleteorgrepo
292
339
  * @apiEndpoint DELETE /orgs/{org_slug}/repos/{repo_slug}
293
- * @quota 1 unit
340
+ * @quota 0 units
294
341
  * @scopes repo:write
295
342
  * @throws {Error} When server returns 5xx status codes
296
343
  */
@@ -315,7 +362,7 @@ export declare class SocketSdk {
315
362
  *
316
363
  * @see https://docs.socket.dev/reference/deleteorgrepolabel
317
364
  * @apiEndpoint DELETE /orgs/{org_slug}/repos/labels/{label_id}
318
- * @quota 1 unit
365
+ * @quota 0 units
319
366
  * @scopes repo-label:delete
320
367
  * @throws {Error} When server returns 5xx status codes
321
368
  */
@@ -402,7 +449,7 @@ export declare class SocketSdk {
402
449
  *
403
450
  * @see https://docs.socket.dev/reference/exportopenvex
404
451
  * @apiEndpoint GET /orgs/{org_slug}/export/openvex/{id}
405
- * @quota 1 unit
452
+ * @quota 0 units
406
453
  * @scopes report:read
407
454
  * @throws {Error} When server returns 5xx status codes
408
455
  */
@@ -447,6 +494,35 @@ export declare class SocketSdk {
447
494
  * @throws {Error} When server returns 5xx status codes
448
495
  */
449
496
  getDiffScanById(orgSlug: string, diffScanId: string): Promise<SocketSdkResult<'getDiffScanById'>>;
497
+ /**
498
+ * Get GitHub-flavored markdown comments for a diff scan.
499
+ * Returns dependency overview and alert comments suitable for pull requests.
500
+ *
501
+ * @param orgSlug - Organization identifier
502
+ * @param diffScanId - Diff scan identifier
503
+ * @param options - Optional query parameters
504
+ * @param options.github_installation_id - GitHub installation ID for settings
505
+ * @returns Diff scan metadata with formatted markdown comments
506
+ *
507
+ * @example
508
+ * ```typescript
509
+ * const result = await sdk.getDiffScanGfm('my-org', 'diff-scan-id')
510
+ *
511
+ * if (result.success) {
512
+ * console.log(result.data.dependency_overview_comment)
513
+ * console.log(result.data.dependency_alert_comment)
514
+ * }
515
+ * ```
516
+ *
517
+ * @see https://docs.socket.dev/reference/getdiffscangfm
518
+ * @apiEndpoint GET /orgs/{org_slug}/diff-scans/{diff_scan_id}/gfm
519
+ * @quota 0 units
520
+ * @scopes diff-scans:list
521
+ * @throws {Error} When server returns 5xx status codes
522
+ */
523
+ getDiffScanGfm(orgSlug: string, diffScanId: string, options?: {
524
+ github_installation_id?: string | undefined;
525
+ } | undefined): Promise<SocketSdkResult<'GetDiffScanGfm'>>;
450
526
  /**
451
527
  * Retrieve the enabled entitlements for an organization.
452
528
  *
@@ -483,7 +559,7 @@ export declare class SocketSdk {
483
559
  *
484
560
  * @see https://docs.socket.dev/reference/getorgfullscan
485
561
  * @apiEndpoint GET /orgs/{org_slug}/full-scans/{full_scan_id}
486
- * @quota 1 unit
562
+ * @quota 0 units
487
563
  * @scopes full-scans:list
488
564
  * @throws {Error} When server returns 5xx status codes
489
565
  */
@@ -510,7 +586,7 @@ export declare class SocketSdk {
510
586
  *
511
587
  * @see https://docs.socket.dev/reference/getorgfullscanmetadata
512
588
  * @apiEndpoint GET /orgs/{org_slug}/full-scans/{full_scan_id}/metadata
513
- * @quota 1 unit
589
+ * @quota 0 units
514
590
  * @scopes full-scans:list
515
591
  * @throws {Error} When server returns 5xx status codes
516
592
  */
@@ -733,7 +809,7 @@ export declare class SocketSdk {
733
809
  *
734
810
  * @see https://docs.socket.dev/reference/getorgrepo
735
811
  * @apiEndpoint GET /orgs/{org_slug}/repos/{repo_slug}
736
- * @quota 1 unit
812
+ * @quota 0 units
737
813
  * @scopes repo:read
738
814
  * @throws {Error} When server returns 5xx status codes
739
815
  */
@@ -760,7 +836,7 @@ export declare class SocketSdk {
760
836
  *
761
837
  * @see https://docs.socket.dev/reference/getorgrepolabel
762
838
  * @apiEndpoint GET /orgs/{org_slug}/repos/labels/{label_id}
763
- * @quota 1 unit
839
+ * @quota 0 units
764
840
  * @scopes repo-label:list
765
841
  * @throws {Error} When server returns 5xx status codes
766
842
  */
@@ -772,10 +848,39 @@ export declare class SocketSdk {
772
848
  * @throws {Error} When server returns 5xx status codes
773
849
  */
774
850
  getScoreByNpmPackage(pkgName: string, version: string): Promise<SocketSdkResult<'getScoreByNPMPackage'>>;
851
+ /**
852
+ * Get list of supported file types for full scan generation.
853
+ * Returns glob patterns for supported manifest files, lockfiles, and configuration formats.
854
+ *
855
+ * Files whose names match the patterns returned by this endpoint can be uploaded
856
+ * for report generation. Examples include `package.json`, `package-lock.json`, and `yarn.lock`.
857
+ *
858
+ * @param orgSlug - Organization identifier
859
+ * @returns Nested object with environment and file type patterns
860
+ *
861
+ * @example
862
+ * ```typescript
863
+ * const result = await sdk.getSupportedFiles('my-org')
864
+ *
865
+ * if (result.success) {
866
+ * console.log('NPM patterns:', result.data.NPM)
867
+ * console.log('PyPI patterns:', result.data.PyPI)
868
+ * }
869
+ * ```
870
+ *
871
+ * @see https://docs.socket.dev/reference/getsupportedfiles
872
+ * @apiEndpoint GET /orgs/{org_slug}/supported-files
873
+ * @quota 0 units
874
+ * @scopes No scopes required, but authentication is required
875
+ * @throws {Error} When server returns 5xx status codes
876
+ */
877
+ getSupportedFiles(orgSlug: string): Promise<SocketSdkResult<'getSupportedFiles'>>;
775
878
  /**
776
879
  * Get list of file types and formats supported for scanning.
777
880
  * Returns supported manifest files, lockfiles, and configuration formats.
778
881
  *
882
+ * @deprecated Use getSupportedFiles() instead. This endpoint has been deprecated
883
+ * since 2023-01-15 and now uses the /report/supported endpoint.
779
884
  * @throws {Error} When server returns 5xx status codes
780
885
  */
781
886
  getSupportedScanFiles(): Promise<SocketSdkResult<'getReportSupportedFiles'>>;
@@ -806,7 +911,7 @@ export declare class SocketSdk {
806
911
  *
807
912
  * @see https://docs.socket.dev/reference/getorgfullscanlist
808
913
  * @apiEndpoint GET /orgs/{org_slug}/full-scans
809
- * @quota 1 unit
914
+ * @quota 0 units
810
915
  * @scopes full-scans:list
811
916
  * @throws {Error} When server returns 5xx status codes
812
917
  */
@@ -831,7 +936,7 @@ export declare class SocketSdk {
831
936
  *
832
937
  * @see https://docs.socket.dev/reference/getorganizations
833
938
  * @apiEndpoint GET /organizations
834
- * @quota 1 unit
939
+ * @quota 0 units
835
940
  * @throws {Error} When server returns 5xx status codes
836
941
  */
837
942
  listOrganizations(): Promise<OrganizationsResult | StrictErrorResult>;
@@ -868,7 +973,7 @@ export declare class SocketSdk {
868
973
  *
869
974
  * @see https://docs.socket.dev/reference/getorgrepolist
870
975
  * @apiEndpoint GET /orgs/{org_slug}/repos
871
- * @quota 1 unit
976
+ * @quota 0 units
872
977
  * @scopes repo:list
873
978
  * @throws {Error} When server returns 5xx status codes
874
979
  */
@@ -896,7 +1001,7 @@ export declare class SocketSdk {
896
1001
  *
897
1002
  * @see https://docs.socket.dev/reference/getorgrepolabellist
898
1003
  * @apiEndpoint GET /orgs/{org_slug}/repos/labels
899
- * @quota 1 unit
1004
+ * @quota 0 units
900
1005
  * @scopes repo-label:list
901
1006
  * @throws {Error} When server returns 5xx status codes
902
1007
  */
@@ -978,7 +1083,7 @@ export declare class SocketSdk {
978
1083
  *
979
1084
  * @see https://docs.socket.dev/reference/rescanorgfullscan
980
1085
  * @apiEndpoint POST /orgs/{org_slug}/full-scans/{full_scan_id}/rescan
981
- * @quota 1 unit
1086
+ * @quota 0 units
982
1087
  * @scopes full-scans:create
983
1088
  * @throws {Error} When server returns 5xx status codes
984
1089
  */
@@ -1029,7 +1134,7 @@ export declare class SocketSdk {
1029
1134
  *
1030
1135
  * @see https://docs.socket.dev/reference/getorgfullscan
1031
1136
  * @apiEndpoint GET /orgs/{org_slug}/full-scans/{full_scan_id}
1032
- * @quota 1 unit
1137
+ * @quota 0 units
1033
1138
  * @scopes full-scans:list
1034
1139
  * @throws {Error} When server returns 5xx status codes
1035
1140
  */
@@ -1122,7 +1227,7 @@ export declare class SocketSdk {
1122
1227
  *
1123
1228
  * @see https://docs.socket.dev/reference/updateorgrepo
1124
1229
  * @apiEndpoint POST /orgs/{org_slug}/repos/{repo_slug}
1125
- * @quota 1 unit
1230
+ * @quota 0 units
1126
1231
  * @scopes repo:write
1127
1232
  * @throws {Error} When server returns 5xx status codes
1128
1233
  */
@@ -1149,7 +1254,7 @@ export declare class SocketSdk {
1149
1254
  *
1150
1255
  * @see https://docs.socket.dev/reference/updateorgrepolabel
1151
1256
  * @apiEndpoint PUT /orgs/{org_slug}/repos/labels/{label_id}
1152
- * @quota 1 unit
1257
+ * @quota 0 units
1153
1258
  * @scopes repo-label:update
1154
1259
  * @throws {Error} When server returns 5xx status codes
1155
1260
  */
@@ -50,6 +50,7 @@ export type FullScanItem = {
50
50
  repository_id: string;
51
51
  repository_slug: string;
52
52
  scan_state?: 'pending' | 'precrawl' | 'resolve' | 'scan' | null | undefined;
53
+ scan_type?: string | null | undefined;
53
54
  updated_at: string;
54
55
  workspace?: string | undefined;
55
56
  };
@@ -79,6 +80,7 @@ export type ListFullScansOptions = {
79
80
  per_page?: number | undefined;
80
81
  pull_request?: string | undefined;
81
82
  repo?: string | undefined;
83
+ scan_type?: string | undefined;
82
84
  sort?: 'name' | 'created_at' | undefined;
83
85
  startAfterCursor?: string | undefined;
84
86
  use_cursor?: boolean | undefined;
@@ -93,6 +95,7 @@ export type ListRepositoriesOptions = {
93
95
  page?: number | undefined;
94
96
  per_page?: number | undefined;
95
97
  sort?: string | undefined;
98
+ workspace?: string | undefined;
96
99
  };
97
100
  /**
98
101
  * Strict type for organization item.
@@ -109,7 +112,50 @@ export type OrganizationItem = {
109
112
  */
110
113
  export type RepositoriesListData = {
111
114
  nextPage?: number | null | undefined;
112
- results: RepositoryItem[];
115
+ results: RepositoryListItem[];
116
+ };
117
+ /**
118
+ * Strict type for repository list item.
119
+ */
120
+ export type RepositoryListItem = {
121
+ archived: boolean;
122
+ created_at: string;
123
+ default_branch: string | null;
124
+ description: string | null;
125
+ head_full_scan_id: string | null;
126
+ homepage: string | null;
127
+ id: string;
128
+ integration_meta?: {
129
+ /** @enum {string} */
130
+ type?: 'github';
131
+ value?: {
132
+ /**
133
+ * @description The GitHub installation_id of the active associated Socket GitHub App
134
+ * @default
135
+ */
136
+ installation_id: string;
137
+ /**
138
+ * @description The GitHub login name that the active Socket GitHub App installation is installed to
139
+ * @default
140
+ */
141
+ installation_login: string;
142
+ /**
143
+ * @description The name of the associated GitHub repo.
144
+ * @default
145
+ */
146
+ repo_name: string | null;
147
+ /**
148
+ * @description The id of the associated GitHub repo.
149
+ * @default
150
+ */
151
+ repo_id: string | null;
152
+ };
153
+ } | null | undefined;
154
+ name: string;
155
+ slug: string;
156
+ updated_at: string;
157
+ visibility: 'public' | 'private';
158
+ workspace: string;
113
159
  };
114
160
  /**
115
161
  * Strict type for repository item.
@@ -149,7 +195,7 @@ export type RepositoryItem = {
149
195
  };
150
196
  } | null;
151
197
  name: string;
152
- slig?: string | undefined;
198
+ slig: string;
153
199
  slug: string;
154
200
  updated_at: string;
155
201
  visibility: 'public' | 'private';
package/dist/types.d.ts CHANGED
@@ -140,6 +140,7 @@ export type SocketSdkErrorResult<T extends SocketSdkOperations> = {
140
140
  error: string;
141
141
  status: number;
142
142
  success: false;
143
+ url?: string | undefined;
143
144
  _operation?: T | undefined;
144
145
  };
145
146
  export type SocketSdkResult<T extends SocketSdkOperations> = SocketSdkSuccessResult<T> | SocketSdkErrorResult<T>;
@@ -168,6 +169,7 @@ export type SocketSdkGenericResult<T> = {
168
169
  error: string;
169
170
  status: number;
170
171
  success: false;
172
+ url?: string | undefined;
171
173
  };
172
174
  /**
173
175
  * Result from file validation callback.
@@ -268,14 +270,13 @@ export interface SocketSdkOptions {
268
270
  onResponse?: ((info: ResponseInfo) => void) | undefined;
269
271
  } | undefined;
270
272
  /**
271
- * Number of retry attempts on failure (default: 0, retries disabled).
272
- * Retries are opt-in following Node.js fs.rm() pattern.
273
- * Recommended: 3 for production, 0 for testing.
273
+ * Number of retry attempts on failure (default: 3).
274
+ * Uses exponential backoff between retries.
274
275
  */
275
276
  retries?: number | undefined;
276
277
  /**
277
- * Initial delay in milliseconds between retries (default: 100).
278
- * Uses exponential backoff: 100ms, 200ms, 400ms, etc.
278
+ * Initial delay in milliseconds between retries (default: 1000).
279
+ * Uses exponential backoff: 1000ms, 2000ms, 4000ms, etc.
279
280
  */
280
281
  retryDelay?: number | undefined;
281
282
  /** Request timeout in milliseconds */
package/package.json CHANGED
@@ -1,19 +1,25 @@
1
1
  {
2
2
  "name": "@socketsecurity/sdk",
3
- "version": "3.3.0",
4
- "packageManager": "pnpm@10.28.1",
5
- "license": "MIT",
3
+ "version": "3.4.0",
6
4
  "description": "SDK for the Socket API client",
5
+ "homepage": "https://github.com/SocketDev/socket-sdk-js",
6
+ "license": "MIT",
7
7
  "author": {
8
8
  "name": "Socket Inc",
9
9
  "email": "eng@socket.dev",
10
10
  "url": "https://socket.dev"
11
11
  },
12
- "homepage": "https://github.com/SocketDev/socket-sdk-js",
13
12
  "repository": {
14
13
  "type": "git",
15
14
  "url": "git://github.com/SocketDev/socket-sdk-js.git"
16
15
  },
16
+ "files": [
17
+ "CHANGELOG.md",
18
+ "data/*.json",
19
+ "dist/*.d.ts",
20
+ "dist/*.js",
21
+ "types/*.d.ts"
22
+ ],
17
23
  "main": "./dist/index.js",
18
24
  "types": "./dist/index.d.ts",
19
25
  "exports": {
@@ -42,6 +48,8 @@
42
48
  "clean": "node scripts/clean.mjs",
43
49
  "cover": "node scripts/cover.mjs",
44
50
  "fix": "node scripts/lint.mjs --fix",
51
+ "format": "oxfmt .",
52
+ "format:check": "oxfmt --check .",
45
53
  "generate-sdk": "node scripts/generate-sdk.mjs",
46
54
  "lint": "node scripts/lint.mjs",
47
55
  "precommit": "pnpm run check --lint --staged",
@@ -49,7 +57,7 @@
49
57
  "ci:validate": "node scripts/ci-validate.mjs",
50
58
  "prepublishOnly": "echo 'ERROR: Use GitHub Actions workflow for publishing' && exit 1",
51
59
  "publish": "node scripts/publish.mjs",
52
- "publish:ci": "node scripts/publish.mjs --skip-git --skip-build --tag ${DIST_TAG:-latest}",
60
+ "publish:ci": "node scripts/publish.mjs --tag ${DIST_TAG:-latest}",
53
61
  "claude": "node scripts/claude.mjs",
54
62
  "test": "node scripts/test.mjs",
55
63
  "type": "tsgo --noEmit -p .config/tsconfig.check.json",
@@ -57,7 +65,7 @@
57
65
  },
58
66
  "dependencies": {
59
67
  "@socketregistry/packageurl-js": "1.3.5",
60
- "@socketsecurity/lib": "5.5.3",
68
+ "@socketsecurity/lib": "5.8.0",
61
69
  "form-data": "4.0.5"
62
70
  },
63
71
  "devDependencies": {
@@ -65,40 +73,46 @@
65
73
  "@babel/parser": "7.26.3",
66
74
  "@babel/traverse": "7.26.4",
67
75
  "@babel/types": "7.26.3",
68
- "@biomejs/biome": "2.2.4",
69
- "@dotenvx/dotenvx": "^1.51.4",
70
- "@eslint/compat": "1.3.2",
71
- "@eslint/js": "9.35.0",
76
+ "@dotenvx/dotenvx": "1.54.1",
77
+ "@oxlint/migrate": "1.52.0",
78
+ "@sveltejs/acorn-typescript": "1.0.8",
72
79
  "@types/babel__traverse": "7.28.0",
73
80
  "@types/node": "24.9.2",
74
81
  "@typescript/native-preview": "7.0.0-dev.20250926.1",
75
82
  "@vitest/coverage-v8": "4.0.3",
76
- "@sveltejs/acorn-typescript": "1.0.8",
77
83
  "acorn": "8.15.0",
78
84
  "del": "8.0.1",
79
85
  "dev-null-cli": "2.0.0",
80
86
  "esbuild": "0.25.11",
81
- "eslint": "9.35.0",
82
- "eslint-import-resolver-typescript": "4.4.4",
83
- "eslint-plugin-import-x": "4.16.1",
84
- "eslint-plugin-jsdoc": "57.0.8",
85
- "eslint-plugin-n": "17.23.1",
86
- "eslint-plugin-sort-destructure-keys": "2.0.0",
87
- "eslint-plugin-unicorn": "56.0.1",
88
87
  "fast-glob": "3.3.3",
89
- "globals": "16.4.0",
90
88
  "http2-wrapper": "2.2.1",
91
89
  "husky": "9.1.7",
92
90
  "magic-string": "0.30.14",
93
91
  "nock": "14.0.10",
94
92
  "openapi-typescript": "6.7.6",
93
+ "oxfmt": "0.37.0",
94
+ "oxlint": "1.52.0",
95
95
  "semver": "7.7.2",
96
96
  "taze": "19.9.2",
97
97
  "type-coverage": "2.29.7",
98
- "typescript-eslint": "8.44.1",
99
- "vitest": "4.0.3",
100
- "yoctocolors-cjs": "2.1.3"
98
+ "vitest": "4.0.3"
99
+ },
100
+ "typeCoverage": {
101
+ "atLeast": 99,
102
+ "cache": true,
103
+ "ignore-files": "test/*",
104
+ "ignore-non-null-assertion": true,
105
+ "ignore-type-assertion": true,
106
+ "ignoreAsAssertion": true,
107
+ "ignoreCatch": true,
108
+ "ignoreEmptyType": true,
109
+ "strict": true
110
+ },
111
+ "engines": {
112
+ "node": ">=18",
113
+ "pnpm": ">=10.25.0"
101
114
  },
115
+ "packageManager": "pnpm@10.32.1",
102
116
  "pnpm": {
103
117
  "ignoredBuiltDependencies": [
104
118
  "esbuild",
@@ -107,27 +121,5 @@
107
121
  "overrides": {
108
122
  "vite": "7.1.12"
109
123
  }
110
- },
111
- "engines": {
112
- "node": ">=18",
113
- "pnpm": ">=10.25.0"
114
- },
115
- "files": [
116
- "CHANGELOG.md",
117
- "data/*.json",
118
- "dist/*.d.ts",
119
- "dist/*.js",
120
- "types/*.d.ts"
121
- ],
122
- "typeCoverage": {
123
- "cache": true,
124
- "atLeast": 99,
125
- "ignoreAsAssertion": true,
126
- "ignoreCatch": true,
127
- "ignoreEmptyType": true,
128
- "ignore-non-null-assertion": true,
129
- "ignore-type-assertion": true,
130
- "ignore-files": "test/*",
131
- "strict": true
132
124
  }
133
125
  }