-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.61 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.61 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
{
"name": "pfw",
"version": "0.3.0",
"description": "Package Firewall — self-hosted supply chain security for macOS. Intercepts npm/pip/cargo/yarn in ALL shells including AI agents. Zero telemetry.",
"type": "module",
"license": "MIT",
"author": "thebasedcapital",
"repository": {
"type": "git",
"url": "https://github.com/thebasedcapital/pfw"
},
"homepage": "https://github.com/thebasedcapital/pfw",
"bugs": {
"url": "https://github.com/thebasedcapital/pfw/issues"
},
"keywords": [
"security",
"supply-chain",
"supply-chain-security",
"supply-chain-attack",
"firewall",
"package-firewall",
"npm-security",
"pip-security",
"cargo-security",
"vulnerability-scanner",
"vulnerability-detection",
"osv",
"cve",
"ghsa",
"cisa-kev",
"malware-detection",
"malware-protection",
"dependency-security",
"dependency-scanning",
"sca",
"software-composition-analysis",
"macos",
"ai-agent-security",
"devsecops",
"devops-security",
"zero-telemetry",
"self-hosted",
"lulu-firewall",
"binary-relocation",
"package-manager",
"npm",
"pip",
"cargo",
"yarn",
"pnpm",
"bun"
],
"bin": {
"pfw": "dist/index.js",
"pfw-wrapper": "dist/wrapper.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"clean": "rm -rf dist"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"node-forge": "^1.3.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/node-forge": "^1.3.11",
"tsx": "^4.0.0",
"typescript": "^5.6.0"
}
}