@socketsecurity/cli-with-sentry 0.14.66 → 0.14.67

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.66",
3
+ "version": "0.14.67",
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",
@@ -75,14 +75,14 @@
75
75
  "@apideck/better-ajv-errors": "0.3.6",
76
76
  "@pnpm/lockfile-file": "^9.1.3",
77
77
  "@pnpm/lockfile.detect-dep-types": "^1001.0.5",
78
- "@sentry/node": "9.8.0",
78
+ "@sentry/node": "9.9.0",
79
79
  "@socketregistry/hyrious__bun.lockb": "1.0.16",
80
80
  "@socketregistry/indent-string": "1.0.12",
81
- "@socketregistry/is-interactive": "1.0.4",
81
+ "@socketregistry/is-interactive": "1.0.5",
82
82
  "@socketregistry/packageurl-js": "1.0.4",
83
83
  "@socketsecurity/config": "2.1.3",
84
- "@socketsecurity/registry": "1.0.133",
85
- "@socketsecurity/sdk": "1.4.15",
84
+ "@socketsecurity/registry": "1.0.135",
85
+ "@socketsecurity/sdk": "1.4.16",
86
86
  "blessed": "0.1.81",
87
87
  "blessed-contrib": "4.11.0",
88
88
  "browserslist": "4.24.4",
@@ -112,8 +112,8 @@
112
112
  "@babel/plugin-transform-export-namespace-from": "^7.25.9",
113
113
  "@babel/plugin-transform-runtime": "^7.26.10",
114
114
  "@babel/preset-env": "^7.26.9",
115
- "@babel/preset-typescript": "^7.26.0",
116
- "@babel/runtime": "^7.26.10",
115
+ "@babel/preset-typescript": "^7.27.0",
116
+ "@babel/runtime": "^7.27.0",
117
117
  "@biomejs/biome": "^1.9.4",
118
118
  "@cyclonedx/cdxgen": "^11.2.2",
119
119
  "@eslint/compat": "^1.2.7",
@@ -128,13 +128,13 @@
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.11",
131
+ "@types/node": "^22.13.13",
132
132
  "@types/npmcli__arborist": "^6.3.0",
133
133
  "@types/proc-log": "^3.0.4",
134
134
  "@types/semver": "^7.5.8",
135
135
  "@types/which": "^3.0.4",
136
136
  "@types/yargs-parser": "^21.0.3",
137
- "@typescript-eslint/parser": "^8.27.0",
137
+ "@typescript-eslint/parser": "^8.28.0",
138
138
  "@vitest/coverage-v8": "3.0.9",
139
139
  "cross-env": "^7.0.3",
140
140
  "del-cli": "^6.0.0",
@@ -154,12 +154,12 @@
154
154
  "npm-run-all2": "^7.0.2",
155
155
  "oxlint": "0.16.2",
156
156
  "read-package-up": "^11.0.0",
157
- "rollup": "4.36.0",
157
+ "rollup": "4.37.0",
158
158
  "rollup-plugin-ts": "^3.4.5",
159
159
  "synp": "^1.9.14",
160
160
  "type-coverage": "^2.29.7",
161
161
  "typescript": "5.4.5",
162
- "typescript-eslint": "^8.27.0",
162
+ "typescript-eslint": "^8.28.0",
163
163
  "unplugin-purge-polyfills": "^0.0.7",
164
164
  "vitest": "3.0.9"
165
165
  },
@@ -1,15 +0,0 @@
1
- import config from '@socketsecurity/config';
2
- interface Settings {
3
- apiBaseUrl?: string | null | undefined;
4
- apiKey?: string | null | undefined;
5
- apiProxy?: string | null | undefined;
6
- enforcedOrgs?: string[] | readonly string[] | null | undefined;
7
- apiToken?: string | null | undefined;
8
- }
9
- declare function findSocketYmlSync(): {
10
- path: string;
11
- parsed: config.SocketYml;
12
- } | null;
13
- declare function getSetting<Key extends keyof Settings>(key: Key): Settings[Key];
14
- declare function updateSetting<Key extends keyof Settings>(key: Key, value: Settings[Key]): void;
15
- export { findSocketYmlSync, getSetting, updateSetting };