-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.55 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.55 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/socket-patch",
"version": "0.1.0",
"description": "CLI tool for applying security patches to dependencies",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"socket-patch": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
},
"./schema": {
"types": "./dist/schema/manifest-schema.d.ts",
"require": "./dist/schema/manifest-schema.js",
"import": "./dist/schema/manifest-schema.js"
},
"./hash": {
"types": "./dist/hash/git-sha256.d.ts",
"require": "./dist/hash/git-sha256.js",
"import": "./dist/hash/git-sha256.js"
},
"./patch": {
"types": "./dist/patch/apply.d.ts",
"require": "./dist/patch/apply.js",
"import": "./dist/patch/apply.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"patch": "node dist/cli.js",
"lint": "oxlint -c ./.oxlintrc.json --tsconfig ./tsconfig.json --deny-warnings",
"lint:fix": "pnpm run lint --fix && pnpm run lint:fix:fast",
"lint:fix:fast": "biome format --write"
},
"keywords": [
"security",
"patch",
"cli",
"dependencies"
],
"author": "Socket Security",
"license": "MIT",
"dependencies": {
"yargs": "^17.7.2",
"zod": "^3.24.4"
},
"devDependencies": {
"@biomejs/biome": "^2.1.2",
"@types/node": "^20.0.0",
"@types/yargs": "^17.0.32",
"oxlint": "^1.15.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}