@panguard-ai/panguard 0.1.1 → 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/dist/cli/commands/admin.d.ts +9 -0
- package/dist/cli/commands/chat.d.ts +7 -0
- package/dist/cli/commands/demo.d.ts +7 -0
- package/dist/cli/commands/guard.d.ts +7 -0
- package/dist/cli/commands/report.d.ts +7 -0
- package/dist/cli/commands/scan.d.ts +7 -0
- package/dist/cli/commands/serve.d.ts +8 -0
- package/dist/cli/commands/threat.d.ts +7 -0
- package/dist/cli/commands/trap.d.ts +7 -0
- package/package.json +10 -10
|
@@ -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
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@panguard-ai/panguard",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Panguard AI - Unified security CLI",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -18,15 +18,15 @@
|
|
|
18
18
|
],
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"commander": "^12.0.0",
|
|
21
|
-
"@panguard-ai/core": "0.
|
|
22
|
-
"@panguard-ai/panguard-
|
|
23
|
-
"@panguard-ai/panguard-
|
|
24
|
-
"@panguard-ai/panguard-chat": "0.
|
|
25
|
-
"@panguard-ai/panguard-guard": "0.
|
|
26
|
-
"@panguard-ai/panguard-trap": "0.
|
|
27
|
-
"@panguard-ai/
|
|
28
|
-
"@panguard-ai/
|
|
29
|
-
"@panguard-ai/
|
|
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"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/node": "^22.14.0",
|