@socketsecurity/cli 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",
3
- "version": "0.14.50",
3
+ "version": "0.14.52",
4
4
  "description": "CLI tool for Socket.dev",
5
5
  "homepage": "http://github.com/SocketDev/socket-cli",
6
6
  "license": "MIT",
@@ -61,24 +61,25 @@
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
  "@socketregistry/hyrious__bun.lockb": "^1.0.13",
76
77
  "@socketregistry/indent-string": "^1.0.10",
77
78
  "@socketregistry/is-interactive": "^1.0.1",
78
- "@socketregistry/is-unicode-supported": "^1.0.0",
79
+ "@socketregistry/is-unicode-supported": "^1.0.1",
79
80
  "@socketregistry/packageurl-js": "^1.0.2",
80
81
  "@socketsecurity/config": "^2.1.3",
81
- "@socketsecurity/registry": "^1.0.95",
82
+ "@socketsecurity/registry": "^1.0.110",
82
83
  "@socketsecurity/sdk": "^1.4.5",
83
84
  "blessed": "^0.1.81",
84
85
  "blessed-contrib": "^4.11.0",
@@ -129,7 +130,7 @@
129
130
  "@types/mocha": "^10.0.10",
130
131
  "@types/mock-fs": "^4.13.4",
131
132
  "@types/ndjson": "^2.0.4",
132
- "@types/node": "^22.13.5",
133
+ "@types/node": "^22.13.8",
133
134
  "@types/npmcli__arborist": "^6.3.0",
134
135
  "@types/npmcli__promise-spawn": "^6.0.3",
135
136
  "@types/proc-log": "^3.0.4",
@@ -146,7 +147,7 @@
146
147
  "eslint-import-resolver-oxc": "^0.12.0",
147
148
  "eslint-plugin-depend": "^0.12.0",
148
149
  "eslint-plugin-import-x": "^4.6.1",
149
- "eslint-plugin-n": "^17.15.1",
150
+ "eslint-plugin-n": "^17.16.1",
150
151
  "eslint-plugin-sort-destructure-keys": "^2.0.0",
151
152
  "eslint-plugin-unicorn": "^56.0.1",
152
153
  "husky": "^9.1.7",
@@ -158,7 +159,7 @@
158
159
  "npm-run-all2": "^7.0.2",
159
160
  "oxlint": "0.15.12",
160
161
  "read-package-up": "^11.0.0",
161
- "rollup": "4.34.8",
162
+ "rollup": "4.34.9",
162
163
  "rollup-plugin-ts": "^3.4.5",
163
164
  "type-coverage": "^2.29.7",
164
165
  "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 };