@socketsecurity/cli-with-sentry 1.1.66 → 1.1.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/CHANGELOG.md +7 -1
- package/README.md +32 -0
- package/dist/cli.js +54 -15
- package/dist/cli.js.map +1 -1
- package/dist/constants.js +3 -3
- package/dist/constants.js.map +1 -1
- package/dist/tsconfig.dts.tsbuildinfo +1 -1
- package/dist/types/commands/patch/cmd-patch.d.mts.map +1 -1
- package/dist/vendor.js +915 -15026
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@socketsecurity/cli-with-sentry",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.67",
|
|
4
4
|
"description": "CLI 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 AND OFL-1.1",
|
|
@@ -87,6 +87,10 @@
|
|
|
87
87
|
"update:deps": "taze",
|
|
88
88
|
"update:socket": "pnpm update '@socketsecurity/*' '@socketregistry/*' --latest"
|
|
89
89
|
},
|
|
90
|
+
"dependencies": {
|
|
91
|
+
"@sentry/node": "10.42.0",
|
|
92
|
+
"@socketsecurity/socket-patch": "2.0.0"
|
|
93
|
+
},
|
|
90
94
|
"devDependencies": {
|
|
91
95
|
"@babel/core": "7.28.4",
|
|
92
96
|
"@babel/plugin-proposal-export-default-from": "7.27.1",
|
|
@@ -124,7 +128,6 @@
|
|
|
124
128
|
"@socketsecurity/config": "3.0.1",
|
|
125
129
|
"@socketsecurity/registry": "1.1.17",
|
|
126
130
|
"@socketsecurity/sdk": "1.4.96",
|
|
127
|
-
"@socketsecurity/socket-patch": "1.2.0",
|
|
128
131
|
"@types/blessed": "0.1.25",
|
|
129
132
|
"@types/cmd-shim": "5.0.2",
|
|
130
133
|
"@types/js-yaml": "4.0.9",
|
|
@@ -290,8 +293,5 @@
|
|
|
290
293
|
"ignore-type-assertion": true,
|
|
291
294
|
"ignore-files": "test/*",
|
|
292
295
|
"strict": true
|
|
293
|
-
},
|
|
294
|
-
"dependencies": {
|
|
295
|
-
"@sentry/node": "10.41.0"
|
|
296
296
|
}
|
|
297
297
|
}
|