shieldx/dashboard/package.json
Rene Fichtmueller a3793a1357 feat: ShieldX v0.1.0 — Self-Evolving LLM Prompt Injection Defense
10-layer defense pipeline with kill chain mapping, self-healing,
self-learning, and compliance reporting. Local-first, zero cloud deps.

- 72 detection rules across 7 kill chain phases
- 294 unit tests, 500+ attack corpus samples
- Management dashboard (Next.js 15, 10 pages)
- Automated resistance testing (2x daily, 31 probes)
- MITRE ATLAS, OWASP LLM Top 10, EU AI Act compliance
- Integrations: Next.js middleware, Ollama, n8n
- PostgreSQL 17 + pgvector for persistent learning
2026-03-27 15:07:27 +13:00

36 lines
846 B
JSON

{
"name": "@shieldx/dashboard",
"version": "0.1.0",
"description": "Management dashboard for ShieldX LLM defense system",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/dashboard/src/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/dashboard/src/index.d.ts"
}
},
"scripts": {
"build": "tsup && tsc -p tsconfig.build.json",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"recharts": "^2.12.0"
},
"devDependencies": {
"typescript": "^5.7.0",
"tsup": "^8.3.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}