diff --git a/package.json b/package.json index 5bb5513..e410b9e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "@cdot65/daystrom", + "name": "@cdot65/prisma-airs-cli", "packageManager": "pnpm@10.6.5", - "version": "1.15.0", + "version": "2.0.0", "description": "CLI and library for Palo Alto Prisma AIRS — guardrail refinement, AI red teaming, model security scanning, profile audits", "type": "module", "main": "dist/index.js", @@ -10,7 +10,7 @@ "dist" ], "bin": { - "daystrom": "dist/cli/index.js" + "airs": "dist/cli/index.js" }, "scripts": { "build": "tsc", @@ -25,10 +25,10 @@ "lint:fix": "biome check --write .", "format": "biome format --write .", "format:check": "biome format .", - "docker:build": "docker build -t daystrom:local .", - "docker:build:amd64": "docker buildx build --platform linux/amd64 --load -t daystrom:local-amd64 .", - "docker:build:arm64": "docker buildx build --platform linux/arm64 --load -t daystrom:local-arm64 .", - "docker:run": "docker run --rm -v ~/.daystrom:/root/.daystrom daystrom:local", + "docker:build": "docker build -t prisma-airs-cli:local .", + "docker:build:amd64": "docker buildx build --platform linux/amd64 --load -t prisma-airs-cli:local-amd64 .", + "docker:build:arm64": "docker buildx build --platform linux/arm64 --load -t prisma-airs-cli:local-arm64 .", + "docker:run": "docker run --rm -v ~/.prisma-airs:/root/.prisma-airs prisma-airs-cli:local", "docker:push:arm64": "./scripts/docker-push-arm64.sh" }, "engines": { @@ -36,7 +36,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/cdot65/daystrom.git" + "url": "https://github.com/cdot65/prisma-airs-cli.git" }, "license": "MIT", "dependencies": { diff --git a/src/audit/report.ts b/src/audit/report.ts index 7e2eaa1..b6b1e99 100644 --- a/src/audit/report.ts +++ b/src/audit/report.ts @@ -122,7 +122,7 @@ export function buildAuditReportHtml(result: AuditResult): string {
-