UNPKG

@llm-dev-ops/shield-cli

Version:

Command-line interface for LLM Shield - Enterprise-grade security scanning for Large Language Models

66 lines (65 loc) 1.5 kB
{ "name": "@llm-dev-ops/shield-cli", "version": "1.0.0", "description": "Command-line interface for LLM Shield - Enterprise-grade security scanning for Large Language Models", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "bin": { "shield": "./dist/cli.js", "llm-shield": "./dist/cli.js" }, "files": [ "dist/", "LICENSE", "README.md" ], "keywords": [ "llm", "security", "cli", "prompt-injection", "toxicity", "ai-security", "content-moderation", "pii-detection", "secrets-detection", "llm-guard" ], "author": "LLM Dev Ops", "license": "Apache-2.0", "repository": { "type": "git", "url": "https://github.com/LLM-Dev-Ops/shield.git", "directory": "packages/shield-cli" }, "bugs": { "url": "https://github.com/LLM-Dev-Ops/shield/issues" }, "homepage": "https://github.com/LLM-Dev-Ops/shield#readme", "engines": { "node": ">=18.0.0" }, "scripts": { "build": "tsc", "dev": "tsc -w", "start": "node dist/cli.js", "test": "vitest run", "test:watch": "vitest", "typecheck": "tsc --noEmit", "lint": "eslint src/**/*.ts", "clean": "rm -rf dist", "prepublishOnly": "npm run build" }, "dependencies": { "chalk": "^5.3.0", "commander": "^12.0.0", "ora": "^8.0.1", "glob": "^10.3.10" }, "devDependencies": { "@types/node": "^20.10.6", "typescript": "^5.3.3", "vitest": "^1.1.1" } }