forked from gensecaihq/react2shell-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.94 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 1.94 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "react2shell-guard",
"version": "1.1.1",
"description": "Security scanner for CVE-2025-55182 - Critical React Server Components RCE vulnerability. Scan lockfiles, SBOMs, Docker images, and live URLs.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./middleware": {
"types": "./dist/middleware/index.d.ts",
"import": "./dist/middleware/index.js"
}
},
"bin": {
"react2shell-guard": "dist/cli/index.js",
"react2shell-guard-mcp": "dist/mcp/server.js"
},
"type": "module",
"files": [
"dist",
"rules",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src --ext .ts",
"start": "node dist/cli/index.js",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"security",
"vulnerability",
"scanner",
"react",
"nextjs",
"rsc",
"react-server-components",
"cve-2025-55182",
"cve",
"rce",
"mcp",
"sbom",
"cyclonedx",
"sarif",
"docker",
"container",
"vercel",
"github-actions",
"pre-commit",
"security-scanner",
"devsecops"
],
"author": "gensecai-dev",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gensecaihq/react2shell-scanner.git"
},
"homepage": "https://github.com/gensecaihq/react2shell-scanner#readme",
"bugs": {
"url": "https://github.com/gensecaihq/react2shell-scanner/issues"
},
"dependencies": {
"commander": "^12.1.0",
"fast-glob": "^3.3.2",
"semver": "^7.6.3",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.1",
"@types/semver": "^7.5.8",
"typescript": "^5.7.2",
"vitest": "^2.1.6"
},
"engines": {
"node": ">=18.0.0"
}
}