bmad-cybersec 3.0.0 → 3.0.1
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bmad-cybersec",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "Production-ready BMAD security and automation framework with comprehensive validation, authentication, and audit capabilities",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./_bmad/framework/dist/index.js",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"postinstall": "npm run build",
|
|
74
74
|
"quality:check": "npm run lint && npm run type-check && npm run test:coverage",
|
|
75
75
|
"ci:quality": "npm run quality:check && npm run security:scan && npm run build",
|
|
76
|
-
"setup": "node src/utility/tools/installer/bin/setup-wizard.
|
|
76
|
+
"setup": "node src/utility/tools/installer/bin/setup-wizard.mjs",
|
|
77
77
|
"modules": "node src/utility/tools/module-selector/index.js",
|
|
78
78
|
"modules:offline": "node src/utility/tools/module-selector/index.js --offline",
|
|
79
79
|
"install:offline": "npm install --offline",
|
|
@@ -234,7 +234,7 @@ async function runSetupWizard(preselect) {
|
|
|
234
234
|
// Import and run setup wizard from extracted files
|
|
235
235
|
try {
|
|
236
236
|
const { runWizard } = await import(
|
|
237
|
-
join(process.cwd(), 'src/utility/tools/installer/bin/setup-wizard.
|
|
237
|
+
join(process.cwd(), 'src/utility/tools/installer/bin/setup-wizard.mjs')
|
|
238
238
|
);
|
|
239
239
|
await runWizard(preselect);
|
|
240
240
|
} catch (error) {
|