@socketsecurity/cli-with-sentry 0.14.77 → 0.14.79

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.77",
3
+ "version": "0.14.79",
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",
@@ -79,17 +79,17 @@
79
79
  "dependencies": {
80
80
  "@apideck/better-ajv-errors": "0.3.6",
81
81
  "@octokit/rest": "^21.1.1",
82
- "@pnpm/lockfile.detect-dep-types": "^1001.0.6",
83
- "@pnpm/lockfile.fs": "^1001.1.8",
82
+ "@pnpm/lockfile.detect-dep-types": "^1001.0.7",
83
+ "@pnpm/lockfile.fs": "^1001.1.9",
84
84
  "@pnpm/logger": "^1000.0.0",
85
- "@sentry/node": "9.11.0",
85
+ "@sentry/node": "9.12.0",
86
86
  "@socketregistry/hyrious__bun.lockb": "1.0.17",
87
87
  "@socketregistry/indent-string": "1.0.12",
88
88
  "@socketregistry/is-interactive": "1.0.5",
89
89
  "@socketregistry/packageurl-js": "1.0.5",
90
90
  "@socketsecurity/config": "2.1.3",
91
- "@socketsecurity/registry": "1.0.137",
92
- "@socketsecurity/sdk": "1.4.24",
91
+ "@socketsecurity/registry": "1.0.140",
92
+ "@socketsecurity/sdk": "1.4.26",
93
93
  "browserslist": "4.24.4",
94
94
  "chalk-table": "1.0.2",
95
95
  "cmd-shim": "7.0.0",
@@ -123,7 +123,9 @@
123
123
  "@biomejs/biome": "^1.9.4",
124
124
  "@cyclonedx/cdxgen": "^11.2.3",
125
125
  "@eslint/compat": "^1.2.8",
126
- "@eslint/js": "^9.23.0",
126
+ "@eslint/js": "^9.24.0",
127
+ "@octokit/openapi-types": "^24.2.0",
128
+ "@octokit/types": "^13.10.0",
127
129
  "@rollup/plugin-commonjs": "28.0.3",
128
130
  "@rollup/plugin-json": "^6.1.0",
129
131
  "@rollup/plugin-node-resolve": "^16.0.1",
@@ -140,7 +142,7 @@
140
142
  "@types/semver": "^7.7.0",
141
143
  "@types/which": "^3.0.4",
142
144
  "@types/yargs-parser": "^21.0.3",
143
- "@typescript-eslint/parser": "^8.29.0",
145
+ "@typescript-eslint/parser": "^8.29.1",
144
146
  "@vitest/coverage-v8": "3.1.1",
145
147
  "blessed": "0.1.81",
146
148
  "blessed-contrib": "4.11.0",
@@ -148,28 +150,28 @@
148
150
  "custompatch": "^1.1.4",
149
151
  "del-cli": "^6.0.0",
150
152
  "dev-null-cli": "^2.0.0",
151
- "eslint": "^9.23.0",
152
- "eslint-import-resolver-typescript": "^4.3.1",
153
- "eslint-plugin-import-x": "^4.10.0",
153
+ "eslint": "^9.24.0",
154
+ "eslint-import-resolver-typescript": "^4.3.2",
155
+ "eslint-plugin-import-x": "^4.10.2",
154
156
  "eslint-plugin-n": "^17.17.0",
155
157
  "eslint-plugin-sort-destructure-keys": "^2.0.0",
156
158
  "eslint-plugin-unicorn": "^56.0.1",
157
159
  "globals": "^16.0.0",
158
160
  "husky": "^9.1.7",
159
- "knip": "^5.46.5",
161
+ "knip": "^5.49.0",
160
162
  "lint-staged": "^15.5.0",
161
163
  "magic-string": "^0.30.17",
162
164
  "mock-fs": "^5.5.0",
163
- "nock": "^14.0.2",
165
+ "nock": "^14.0.3",
164
166
  "npm-run-all2": "^7.0.2",
165
- "oxlint": "0.16.4",
167
+ "oxlint": "0.16.5",
166
168
  "read-package-up": "^11.0.0",
167
169
  "rollup": "4.39.0",
168
170
  "rollup-plugin-ts": "^3.4.5",
169
171
  "synp": "^1.9.14",
170
172
  "type-coverage": "^2.29.7",
171
173
  "typescript": "5.4.5",
172
- "typescript-eslint": "^8.29.0",
174
+ "typescript-eslint": "^8.29.1",
173
175
  "unplugin-purge-polyfills": "^0.0.7",
174
176
  "vitest": "3.1.1"
175
177
  },
@@ -1,61 +0,0 @@
1
- /// <reference types="node" />
2
- import { Remap } from '@socketsecurity/registry/lib/objects'
3
- import { Abortable } from 'node:events'
4
- import {
5
- ObjectEncodingOptions,
6
- OpenMode,
7
- PathLike,
8
- PathOrFileDescriptor
9
- } from 'node:fs'
10
- import { FileHandle } from 'node:fs/promises'
11
- type FindUpOptions = {
12
- cwd?: string | undefined
13
- signal?: AbortSignal | undefined
14
- }
15
- declare function findUp(
16
- name: string | string[],
17
- { cwd, signal }: FindUpOptions
18
- ): Promise<string | undefined>
19
- type ReadFileOptions = Remap<
20
- ObjectEncodingOptions &
21
- Abortable & {
22
- flag?: OpenMode | undefined
23
- }
24
- >
25
- declare function readFileBinary(
26
- filepath: PathLike | FileHandle,
27
- options?: ReadFileOptions | undefined
28
- ): Promise<Buffer>
29
- declare function readFileUtf8(
30
- filepath: PathLike | FileHandle,
31
- options?: ReadFileOptions | undefined
32
- ): Promise<string>
33
- declare function safeReadFile(
34
- filepath: PathLike | FileHandle,
35
- options?:
36
- | 'utf8'
37
- | 'utf-8'
38
- | {
39
- encoding: 'utf8' | 'utf-8'
40
- }
41
- | undefined
42
- ): Promise<string | undefined>
43
- declare function safeReadFileSync(
44
- filepath: PathOrFileDescriptor,
45
- options?:
46
- | 'utf8'
47
- | 'utf-8'
48
- | {
49
- encoding: 'utf8' | 'utf-8'
50
- }
51
- | undefined
52
- ): string | undefined
53
- export {
54
- FindUpOptions,
55
- findUp,
56
- ReadFileOptions,
57
- readFileBinary,
58
- readFileUtf8,
59
- safeReadFile,
60
- safeReadFileSync
61
- }