-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.3 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
{
"name": "patient-zero",
"version": "0.2.1",
"description": "Scans Node, Python, and AI-agent configs for indicators of compromise from npm and PyPI supply-chain attacks.",
"type": "module",
"bin": {
"patient-zero": "./bin/cli.js",
"p0": "./bin/cli.js"
},
"main": "./src/index.js",
"exports": {
".": "./src/index.js"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"bin/",
"src/",
"data/iocs.json",
"data/iocs.snapshot.json",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test",
"aggregator": "node aggregator/build.js",
"render-attacks": "node aggregator/render-attacks.js",
"start": "node bin/cli.js"
},
"keywords": [
"supply-chain",
"security",
"npm",
"pypi",
"mcp",
"ioc",
"scanner",
"cli",
"shai-hulud",
"agent-security"
],
"homepage": "https://github.com/0xSteph/patient-zero#readme",
"bugs": {
"url": "https://github.com/0xSteph/patient-zero/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xSteph/patient-zero.git"
},
"author": "0xSteph",
"license": "MIT",
"dependencies": {
"commander": "^12.1.0",
"ora": "^8.1.1",
"picocolors": "^1.1.1",
"semver": "^7.6.3",
"smol-toml": "^1.3.1",
"yaml": "^2.6.1"
}
}