@socketsecurity/cli-with-sentry 0.14.65 → 0.14.66

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@socketsecurity/cli-with-sentry",
3
- "version": "0.14.65",
3
+ "version": "0.14.66",
4
4
  "description": "CLI tool for Socket.dev, includes Sentry error handling, otherwise identical to the regular `socket` package",
5
5
  "homepage": "https://github.com/SocketDev/socket-cli",
6
6
  "license": "MIT",
@@ -82,7 +82,7 @@
82
82
  "@socketregistry/packageurl-js": "1.0.4",
83
83
  "@socketsecurity/config": "2.1.3",
84
84
  "@socketsecurity/registry": "1.0.133",
85
- "@socketsecurity/sdk": "1.4.13",
85
+ "@socketsecurity/sdk": "1.4.15",
86
86
  "blessed": "0.1.81",
87
87
  "blessed-contrib": "4.11.0",
88
88
  "browserslist": "4.24.4",
@@ -117,7 +117,7 @@
117
117
  "@biomejs/biome": "^1.9.4",
118
118
  "@cyclonedx/cdxgen": "^11.2.2",
119
119
  "@eslint/compat": "^1.2.7",
120
- "@eslint/js": "^9.22.0",
120
+ "@eslint/js": "^9.23.0",
121
121
  "@rollup/plugin-commonjs": "^28.0.3",
122
122
  "@rollup/plugin-json": "^6.1.0",
123
123
  "@rollup/plugin-node-resolve": "^16.0.1",
@@ -128,7 +128,7 @@
128
128
  "@types/common-tags": "^1.8.4",
129
129
  "@types/micromatch": "^4.0.9",
130
130
  "@types/mock-fs": "^4.13.4",
131
- "@types/node": "^22.13.10",
131
+ "@types/node": "^22.13.11",
132
132
  "@types/npmcli__arborist": "^6.3.0",
133
133
  "@types/proc-log": "^3.0.4",
134
134
  "@types/semver": "^7.5.8",
@@ -138,7 +138,7 @@
138
138
  "@vitest/coverage-v8": "3.0.9",
139
139
  "cross-env": "^7.0.3",
140
140
  "del-cli": "^6.0.0",
141
- "eslint": "^9.22.0",
141
+ "eslint": "^9.23.0",
142
142
  "eslint-import-resolver-oxc": "^0.13.1",
143
143
  "eslint-plugin-import-x": "^4.9.1",
144
144
  "eslint-plugin-n": "^17.16.2",
@@ -152,7 +152,7 @@
152
152
  "mock-fs": "^5.5.0",
153
153
  "nock": "^14.0.1",
154
154
  "npm-run-all2": "^7.0.2",
155
- "oxlint": "0.16.1",
155
+ "oxlint": "0.16.2",
156
156
  "read-package-up": "^11.0.0",
157
157
  "rollup": "4.36.0",
158
158
  "rollup-plugin-ts": "^3.4.5",
@@ -1,22 +0,0 @@
1
- /// <reference types="node" />
2
- import { Remap } from '@socketsecurity/registry/lib/objects';
3
- import { Abortable } from 'node:events';
4
- import { ObjectEncodingOptions, OpenMode, PathLike, PathOrFileDescriptor } from 'node:fs';
5
- import { FileHandle } from 'node:fs/promises';
6
- type FindUpOptions = {
7
- cwd?: string | undefined;
8
- signal?: AbortSignal | undefined;
9
- };
10
- declare function findUp(name: string | string[], { cwd, signal }: FindUpOptions): Promise<string | undefined>;
11
- type ReadFileOptions = Remap<ObjectEncodingOptions & Abortable & {
12
- flag?: OpenMode | undefined;
13
- }>;
14
- declare function readFileBinary(filepath: PathLike | FileHandle, options?: ReadFileOptions | undefined): Promise<Buffer>;
15
- declare function readFileUtf8(filepath: PathLike | FileHandle, options?: ReadFileOptions | undefined): Promise<string>;
16
- declare function safeReadFile(filepath: PathLike | FileHandle, options?: 'utf8' | 'utf-8' | {
17
- encoding: 'utf8' | 'utf-8';
18
- } | undefined): Promise<string | undefined>;
19
- declare function safeReadFileSync(filepath: PathOrFileDescriptor, options?: 'utf8' | 'utf-8' | {
20
- encoding: 'utf8' | 'utf-8';
21
- } | undefined): string | undefined;
22
- export { FindUpOptions, findUp, ReadFileOptions, readFileBinary, readFileUtf8, safeReadFile, safeReadFileSync };