@panguard-ai/security-hardening 1.7.2 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -0
- package/package.json +3 -3
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# @panguard-ai/security-hardening
|
|
2
|
+
|
|
3
|
+
Security hardening library for Panguard — WebSocket security, credential management, sandbox isolation, and audit logging.
|
|
4
|
+
|
|
5
|
+
Secure your deployment:
|
|
6
|
+
|
|
7
|
+
- WebSocket and credential handling
|
|
8
|
+
- Sandbox execution primitives
|
|
9
|
+
- Permission and capability enforcement
|
|
10
|
+
- Audit trail and tamper detection
|
|
11
|
+
|
|
12
|
+
Part of the **PanGuard Community** suite — 100% free and open source (MIT).
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npm install @panguard-ai/security-hardening
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
**License**: MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@panguard-ai/security-hardening",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Security hardening library for Panguard / Panguard 安全強化函式庫",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"README.md"
|
|
45
45
|
],
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"
|
|
48
|
-
"
|
|
47
|
+
"zod": "^3.24.0",
|
|
48
|
+
"@panguard-ai/core": "1.3.1"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@types/node": "^22.14.0",
|