-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.78 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.78 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
{
"name": "@socketsecurity/socket-patch",
"version": "2.1.4",
"description": "CLI tool and schema library for applying security patches to dependencies",
"bin": {
"socket-patch": "bin/socket-patch"
},
"exports": {
"./schema": {
"types": "./dist/schema/manifest-schema.d.ts",
"import": "./dist/schema/manifest-schema.js",
"require": "./dist/schema/manifest-schema.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"test": "pnpm run build && node --test dist/**/*.test.js"
},
"keywords": [
"security",
"patch",
"cli",
"dependencies"
],
"author": "Socket Security",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SocketDev/socket-patch"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"zod": "^3.24.4"
},
"devDependencies": {
"typescript": "^5.3.0",
"@types/node": "^20.0.0"
},
"optionalDependencies": {
"@socketsecurity/socket-patch-android-arm64": "2.1.4",
"@socketsecurity/socket-patch-darwin-arm64": "2.1.4",
"@socketsecurity/socket-patch-darwin-x64": "2.1.4",
"@socketsecurity/socket-patch-linux-arm-gnu": "2.1.4",
"@socketsecurity/socket-patch-linux-arm-musl": "2.1.4",
"@socketsecurity/socket-patch-linux-arm64-gnu": "2.1.4",
"@socketsecurity/socket-patch-linux-arm64-musl": "2.1.4",
"@socketsecurity/socket-patch-linux-ia32-gnu": "2.1.4",
"@socketsecurity/socket-patch-linux-ia32-musl": "2.1.4",
"@socketsecurity/socket-patch-linux-x64-gnu": "2.1.4",
"@socketsecurity/socket-patch-linux-x64-musl": "2.1.4",
"@socketsecurity/socket-patch-win32-arm64": "2.1.4",
"@socketsecurity/socket-patch-win32-ia32": "2.1.4",
"@socketsecurity/socket-patch-win32-x64": "2.1.4"
}
}