@socketsecurity/cli 0.14.49 → 0.14.51

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.49",
3
+ "version": "0.14.51",
4
4
  "description": "CLI tool for Socket.dev",
5
5
  "homepage": "http://github.com/SocketDev/socket-cli",
6
6
  "license": "MIT",
@@ -62,23 +62,23 @@
62
62
  "test:prepare": "cross-env VITEST=1 npm run build",
63
63
  "test:unit": "vitest --run",
64
64
  "test:unit:coverage": "vitest run --coverage",
65
- "test:unit:update-snapshots": "vitest --update",
66
65
  "test-ci": "run-s test:*",
66
+ "testu": "cross-env SOCKET_CLI_NO_API_TOKEN=1 run-s test:prepare test:unit -- --update",
67
67
  "update": "run-p --aggregate-output update:**",
68
68
  "update:deps": "npx --yes npm-check-updates"
69
69
  },
70
70
  "dependencies": {
71
71
  "@apideck/better-ajv-errors": "^0.3.6",
72
- "@cyclonedx/cdxgen": "^11.1.10",
72
+ "@cyclonedx/cdxgen": "^11.2.0",
73
73
  "@npmcli/promise-spawn": "^8.0.2",
74
74
  "@octokit/rest": "^21.1.1",
75
75
  "@socketregistry/hyrious__bun.lockb": "^1.0.13",
76
76
  "@socketregistry/indent-string": "^1.0.10",
77
77
  "@socketregistry/is-interactive": "^1.0.1",
78
- "@socketregistry/is-unicode-supported": "^1.0.0",
78
+ "@socketregistry/is-unicode-supported": "^1.0.1",
79
79
  "@socketregistry/packageurl-js": "^1.0.2",
80
80
  "@socketsecurity/config": "^2.1.3",
81
- "@socketsecurity/registry": "^1.0.95",
81
+ "@socketsecurity/registry": "^1.0.107",
82
82
  "@socketsecurity/sdk": "^1.4.5",
83
83
  "blessed": "^0.1.81",
84
84
  "blessed-contrib": "^4.11.0",
@@ -129,7 +129,7 @@
129
129
  "@types/mocha": "^10.0.10",
130
130
  "@types/mock-fs": "^4.13.4",
131
131
  "@types/ndjson": "^2.0.4",
132
- "@types/node": "^22.13.5",
132
+ "@types/node": "^22.13.8",
133
133
  "@types/npmcli__arborist": "^6.3.0",
134
134
  "@types/npmcli__promise-spawn": "^6.0.3",
135
135
  "@types/proc-log": "^3.0.4",
@@ -158,7 +158,7 @@
158
158
  "npm-run-all2": "^7.0.2",
159
159
  "oxlint": "0.15.12",
160
160
  "read-package-up": "^11.0.0",
161
- "rollup": "4.34.8",
161
+ "rollup": "4.34.9",
162
162
  "rollup-plugin-ts": "^3.4.5",
163
163
  "type-coverage": "^2.29.7",
164
164
  "typescript": "5.4.5",
@@ -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 };