shieldx/package.json
Rene Fichtmueller 1c4c034483 feat: ShieldX v0.3.0 — UnicodeScanner (L5), DNS Covert Channel rules, ATLAS v5.4 mappings
- Layer 4 EntropyScanner: Shannon entropy, Base32/Base64 detection, CVE-2025-55284
  ping/nslookup exfil, EchoLeak markdown pattern, DNS tunneling (iodine/dnscat)
- Layer 5 UnicodeScanner: ASCII Smuggling (U+E0000 Tags Block), Variant Selectors,
  Zero-Width steganography, CamoLeak image-ordering (CVE-2025-53773), homoglyphs,
  BiDi override, high-entropy URL params
- 30 DNS covert channel rules (dns-001 to dns-030)
- ATLASMapper: 29 techniques (ATLAS v5.4.0 Feb 2026), added AML.T0062 (Agent Tool
  Invocation), AML.TA0015 (C2 tactic), memory poisoning, multi-agent trust,
  CamoLeak, Unicode steganography mappings
- Rule count: 72 → 102
- Build: tsup 316ms, zero TypeScript errors
2026-03-31 16:32:16 +02:00

94 lines
2.3 KiB
JSON

{
"name": "@shieldx/core",
"version": "0.3.0",
"description": "Self-evolving LLM prompt injection defense — 10-layer detection, kill chain mapping, self-healing, self-learning",
"author": "Context X <opensource@context-x.org>",
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./nextjs": {
"import": "./dist/integrations/nextjs/index.mjs",
"require": "./dist/integrations/nextjs/index.js",
"types": "./dist/integrations/nextjs/index.d.ts"
},
"./ollama": {
"import": "./dist/integrations/ollama/index.mjs",
"require": "./dist/integrations/ollama/index.js",
"types": "./dist/integrations/ollama/index.d.ts"
},
"./anthropic": {
"import": "./dist/integrations/anthropic/index.mjs",
"require": "./dist/integrations/anthropic/index.js",
"types": "./dist/integrations/anthropic/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:run": "vitest run",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"db:migrate": "tsx scripts/setup-db.ts",
"db:seed": "tsx scripts/seed-patterns.ts",
"benchmark": "tsx scripts/benchmark.ts",
"self-test": "tsx scripts/self-test.ts"
},
"dependencies": {
"pg": "^8.13.0",
"pgvector": "^0.2.0",
"zod": "^3.24.0",
"pino": "^9.6.0"
},
"devDependencies": {
"typescript": "^5.7.0",
"tsup": "^8.3.0",
"tsx": "^4.19.0",
"vitest": "^3.0.0",
"@vitest/coverage-v8": "^3.0.0",
"@types/pg": "^8.11.0",
"@types/node": "^22.0.0",
"eslint": "^9.0.0"
},
"peerDependencies": {
"next": ">=15.0.0"
},
"peerDependenciesMeta": {
"next": {
"optional": true
}
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://gitea.context-x.org/rene/shieldx.git"
},
"keywords": [
"llm",
"security",
"prompt-injection",
"defense",
"guardrails",
"claude",
"ollama",
"self-healing",
"kill-chain",
"mcp-security"
]
}