@socketsecurity/cli-with-sentry 0.14.50 → 0.14.52

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.50",
3
+ "version": "0.14.52",
4
4
  "description": "CLI tool for Socket.dev, includes Sentry error handling, otherwise identical to the regular `socket` package",
5
5
  "homepage": "http://github.com/SocketDev/socket-cli",
6
6
  "license": "MIT",
@@ -61,25 +61,26 @@
61
61
  "test": "run-s check test:*",
62
62
  "test:prepare": "cross-env VITEST=1 npm run build",
63
63
  "test:unit": "vitest --run",
64
+ "test:unit:update": "vitest --update",
64
65
  "test:unit:coverage": "vitest run --coverage",
65
66
  "test-ci": "run-s test:*",
66
- "testu": "cross-env SOCKET_CLI_NO_API_TOKEN=1 run-s test:prepare test:unit -- --update",
67
+ "testu": "cross-env SOCKET_CLI_NO_API_TOKEN=1 run-s test:prepare test:unit:update",
67
68
  "update": "run-p --aggregate-output update:**",
68
69
  "update:deps": "npx --yes npm-check-updates"
69
70
  },
70
71
  "dependencies": {
71
72
  "@apideck/better-ajv-errors": "^0.3.6",
72
- "@cyclonedx/cdxgen": "^11.1.10",
73
+ "@cyclonedx/cdxgen": "^11.2.0",
73
74
  "@npmcli/promise-spawn": "^8.0.2",
74
75
  "@octokit/rest": "^21.1.1",
75
76
  "@sentry/node": "9.3.0",
76
77
  "@socketregistry/hyrious__bun.lockb": "^1.0.13",
77
78
  "@socketregistry/indent-string": "^1.0.10",
78
79
  "@socketregistry/is-interactive": "^1.0.1",
79
- "@socketregistry/is-unicode-supported": "^1.0.0",
80
+ "@socketregistry/is-unicode-supported": "^1.0.1",
80
81
  "@socketregistry/packageurl-js": "^1.0.2",
81
82
  "@socketsecurity/config": "^2.1.3",
82
- "@socketsecurity/registry": "^1.0.95",
83
+ "@socketsecurity/registry": "^1.0.110",
83
84
  "@socketsecurity/sdk": "^1.4.5",
84
85
  "blessed": "^0.1.81",
85
86
  "blessed-contrib": "^4.11.0",
@@ -130,7 +131,7 @@
130
131
  "@types/mocha": "^10.0.10",
131
132
  "@types/mock-fs": "^4.13.4",
132
133
  "@types/ndjson": "^2.0.4",
133
- "@types/node": "^22.13.5",
134
+ "@types/node": "^22.13.8",
134
135
  "@types/npmcli__arborist": "^6.3.0",
135
136
  "@types/npmcli__promise-spawn": "^6.0.3",
136
137
  "@types/proc-log": "^3.0.4",
@@ -147,7 +148,7 @@
147
148
  "eslint-import-resolver-oxc": "^0.12.0",
148
149
  "eslint-plugin-depend": "^0.12.0",
149
150
  "eslint-plugin-import-x": "^4.6.1",
150
- "eslint-plugin-n": "^17.15.1",
151
+ "eslint-plugin-n": "^17.16.1",
151
152
  "eslint-plugin-sort-destructure-keys": "^2.0.0",
152
153
  "eslint-plugin-unicorn": "^56.0.1",
153
154
  "husky": "^9.1.7",
@@ -159,7 +160,7 @@
159
160
  "npm-run-all2": "^7.0.2",
160
161
  "oxlint": "0.15.12",
161
162
  "read-package-up": "^11.0.0",
162
- "rollup": "4.34.8",
163
+ "rollup": "4.34.9",
163
164
  "rollup-plugin-ts": "^3.4.5",
164
165
  "type-coverage": "^2.29.7",
165
166
  "typescript": "5.4.5",
@@ -1,3 +0,0 @@
1
- declare function isDebug(): boolean;
2
- declare function debugLog(...args: any[]): void;
3
- export { isDebug, debugLog };
@@ -1,16 +0,0 @@
1
- type LogSymbols = {
2
- info: string;
3
- success: string;
4
- warning: string;
5
- error: string;
6
- };
7
- declare function getLogSymbols(): LogSymbols;
8
- declare class Logger {
9
- #private;
10
- constructor();
11
- error(text: string): void;
12
- info(text: string): void;
13
- warn(text: string): void;
14
- }
15
- declare const logger: Logger;
16
- export { LogSymbols, getLogSymbols, Logger, logger };