@panguard-ai/panguard 0.1.0 → 0.2.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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Panguard AI Team
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,9 @@
1
+ /**
2
+ * panguard admin - Admin management commands
3
+ *
4
+ * panguard admin init Create initial admin account
5
+ * panguard admin create-user Create a user with specified tier
6
+ */
7
+ import { Command } from 'commander';
8
+ export declare function adminCommand(): Command;
9
+ //# sourceMappingURL=admin.d.ts.map
@@ -0,0 +1,7 @@
1
+ /**
2
+ * panguard chat - Notification system management
3
+ * panguard chat - 通知系統管理
4
+ */
5
+ import { Command } from 'commander';
6
+ export declare function chatCommand(): Command;
7
+ //# sourceMappingURL=chat.d.ts.map
@@ -0,0 +1,7 @@
1
+ /**
2
+ * panguard demo - Automated demo sequence
3
+ * panguard demo - 自動化展示序列
4
+ */
5
+ import { Command } from 'commander';
6
+ export declare function demoCommand(): Command;
7
+ //# sourceMappingURL=demo.d.ts.map
@@ -0,0 +1,7 @@
1
+ /**
2
+ * panguard guard - Guard engine management
3
+ * panguard guard - 守護引擎管理
4
+ */
5
+ import { Command } from 'commander';
6
+ export declare function guardCommand(): Command;
7
+ //# sourceMappingURL=guard.d.ts.map
@@ -0,0 +1,7 @@
1
+ /**
2
+ * panguard report - Compliance report generation
3
+ * panguard report - 合規報告產生
4
+ */
5
+ import { Command } from 'commander';
6
+ export declare function reportCommand(): Command;
7
+ //# sourceMappingURL=report.d.ts.map
@@ -0,0 +1,7 @@
1
+ /**
2
+ * panguard scan - Security scanning command
3
+ * panguard scan - 安全掃描命令
4
+ */
5
+ import { Command } from 'commander';
6
+ export declare function scanCommand(): Command;
7
+ //# sourceMappingURL=scan.d.ts.map
@@ -0,0 +1,8 @@
1
+ /**
2
+ * panguard serve - Unified HTTP server gateway
3
+ *
4
+ * Serves auth API, admin API, admin dashboard UI, and health check.
5
+ */
6
+ import { Command } from 'commander';
7
+ export declare function serveCommand(): Command;
8
+ //# sourceMappingURL=serve.d.ts.map
@@ -0,0 +1,7 @@
1
+ /**
2
+ * panguard threat - Threat intelligence API management
3
+ * panguard threat - 威脅情報 API 管理
4
+ */
5
+ import { Command } from 'commander';
6
+ export declare function threatCommand(): Command;
7
+ //# sourceMappingURL=threat.d.ts.map
@@ -0,0 +1,7 @@
1
+ /**
2
+ * panguard trap - Honeypot system management
3
+ * panguard trap - 蜜罐系統管理
4
+ */
5
+ import { Command } from 'commander';
6
+ export declare function trapCommand(): Command;
7
+ //# sourceMappingURL=trap.d.ts.map
package/dist/cli/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@panguard-ai/panguard",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "type": "module",
5
5
  "description": "Panguard AI - Unified security CLI",
6
6
  "main": "./dist/index.js",
@@ -16,27 +16,26 @@
16
16
  "package.json",
17
17
  "README.md"
18
18
  ],
19
- "scripts": {
20
- "build": "tsc --build",
21
- "clean": "rm -rf dist tsconfig.tsbuildinfo",
22
- "typecheck": "tsc --noEmit",
23
- "dev": "tsc --build --watch",
24
- "prepublishOnly": "pnpm run build"
25
- },
26
19
  "dependencies": {
27
- "@panguard-ai/core": "workspace:*",
28
- "@panguard-ai/panguard-scan": "workspace:*",
29
- "@panguard-ai/panguard-guard": "workspace:*",
30
- "@panguard-ai/panguard-report": "workspace:*",
31
- "@panguard-ai/panguard-chat": "workspace:*",
32
- "@panguard-ai/panguard-trap": "workspace:*",
33
- "@panguard-ai/threat-cloud": "workspace:*",
34
- "@panguard-ai/panguard-auth": "workspace:*",
35
- "@panguard-ai/security-hardening": "workspace:*",
36
- "commander": "^12.0.0"
20
+ "commander": "^12.0.0",
21
+ "@panguard-ai/core": "0.2.0",
22
+ "@panguard-ai/panguard-scan": "0.2.0",
23
+ "@panguard-ai/panguard-report": "0.2.0",
24
+ "@panguard-ai/panguard-chat": "0.2.0",
25
+ "@panguard-ai/panguard-guard": "0.2.0",
26
+ "@panguard-ai/panguard-trap": "0.2.0",
27
+ "@panguard-ai/threat-cloud": "0.2.0",
28
+ "@panguard-ai/panguard-auth": "0.2.0",
29
+ "@panguard-ai/security-hardening": "0.1.1"
37
30
  },
38
31
  "devDependencies": {
39
32
  "@types/node": "^22.14.0",
40
33
  "typescript": "~5.7.3"
34
+ },
35
+ "scripts": {
36
+ "build": "tsc --build",
37
+ "clean": "rm -rf dist tsconfig.tsbuildinfo",
38
+ "typecheck": "tsc --noEmit",
39
+ "dev": "tsc --build --watch"
41
40
  }
42
- }
41
+ }