-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.51 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@socketsecurity/cli-with-sentry",
"version": "1.1.25",
"description": "Socket CLI with Sentry telemetry for enhanced error reporting",
"homepage": "https://github.com/SocketDev/socket-cli",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SocketDev/socket-cli.git",
"directory": "packages/cli-with-sentry"
},
"author": {
"name": "Socket Inc",
"email": "eng@socket.dev",
"url": "https://socket.dev"
},
"bin": {
"socket": "bin/cli.js",
"socket-npm": "bin/npm-cli.js",
"socket-npx": "bin/npx-cli.js",
"socket-pnpm": "bin/pnpm-cli.js",
"socket-yarn": "bin/yarn-cli.js"
},
"exports": {
"./bin/cli.js": "./dist/cli.js",
"./bin/npm-cli.js": "./dist/npm-cli.js",
"./bin/npx-cli.js": "./dist/npx-cli.js",
"./bin/pnpm-cli.js": "./dist/pnpm-cli.js",
"./bin/yarn-cli.js": "./dist/yarn-cli.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "node scripts/build.mjs",
"clean:dist": "del-cli 'dist'",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"socket",
"security",
"cli",
"sentry",
"telemetry"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"@socketsecurity/cli": "workspace:*"
},
"devDependencies": {
"@sentry/node": "8.0.0",
"del-cli": "6.0.0",
"esbuild": "0.25.10",
"vitest": "3.0.5"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"private": true
}