UNPKG

llmverify

Version:

AI Output Verification Toolkit — Local-first LLM safety, hallucination detection, PII redaction, prompt injection defense, and runtime monitoring. Zero telemetry. OWASP LLM Top 10 aligned.

176 lines (175 loc) 4.04 kB
{ "name": "llmverify", "version": "1.4.0", "description": "AI Output Verification Toolkit — Local-first LLM safety, hallucination detection, PII redaction, prompt injection defense, and runtime monitoring. Zero telemetry. OWASP LLM Top 10 aligned.", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "sideEffects": false, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.js" }, "./core": { "types": "./dist/core/index.d.ts", "import": "./dist/core/index.js", "require": "./dist/core/index.js" }, "./adapters": { "types": "./dist/adapters/index.d.ts", "import": "./dist/adapters/index.js", "require": "./dist/adapters/index.js" }, "./engines": { "types": "./dist/engines/index.d.ts", "import": "./dist/engines/index.js", "require": "./dist/engines/index.js" }, "./package.json": "./package.json" }, "bin": { "llmverify": "./dist/cli.js", "llmverify-serve": "./bin/llmverify-serve.js" }, "scripts": { "build": "tsc", "build:clean": "rm -rf dist && tsc", "postinstall": "node dist/postinstall.js || true", "test": "jest", "test:coverage": "jest --coverage", "test:watch": "jest --watch", "typecheck": "tsc --noEmit", "prepublishOnly": "npm run build && npm test", "doctor": "node dist/cli.js doctor", "verify": "node dist/cli.js verify" }, "keywords": [ "llmverify", "llm", "ai", "verification", "guardrail", "guardrails", "ai-guardrail", "ai-guardrails", "llm-guardrail", "safety", "ai-safety", "llm-safety", "prompt-injection", "prompt-injection-detection", "jailbreak-detection", "hallucination", "hallucination-detection", "pii-detection", "pii-redaction", "content-safety", "content-moderation", "ai-governance", "ai-compliance", "owasp", "owasp-llm", "OWASP LLM Top 10", "nist", "NIST AI RMF", "iso42001", "ISO 42001", "eu-ai-act", "csm6", "local-first", "privacy", "zero-telemetry", "AI safety middleware", "AI verification pipeline", "drop-in verification", "industry standard", "langchain", "zod", "openai", "anthropic", "chatgpt", "gpt", "claude" ], "author": "KingCaliber Labs", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/subodhkc/llmverify-npm.git" }, "bugs": { "url": "https://github.com/subodhkc/llmverify-npm/issues" }, "homepage": "https://github.com/subodhkc/llmverify-npm#readme", "funding": { "type": "individual", "url": "https://www.buymeacoffee.com/subodhkc" }, "engines": { "node": ">=18.0.0" }, "os": [ "darwin", "linux", "win32" ], "cpu": [ "x64", "arm64" ], "dependencies": { "chalk": "^4.1.2", "cli-table3": "^0.6.3", "commander": "^11.1.0", "express": "^4.18.2", "llmverify": "^1.0.1", "uuid": "^9.0.1" }, "peerDependencies": { "@langchain/core": ">=0.1.0", "anthropic": ">=0.20.0", "openai": ">=4.0.0" }, "peerDependenciesMeta": { "openai": { "optional": true }, "anthropic": { "optional": true }, "@langchain/core": { "optional": true } }, "devDependencies": { "@playwright/test": "^1.57.0", "@types/express": "^4.17.21", "@types/jest": "^29.5.11", "@types/node": "^20.10.5", "@types/supertest": "^6.0.2", "@types/uuid": "^9.0.7", "jest": "^29.7.0", "playwright": "^1.57.0", "supertest": "^6.3.3", "ts-jest": "^29.1.1", "typescript": "^5.3.3" }, "files": [ "dist", "bin", "docs", "examples", "recipes", "prompts", "schema", "README.md", "LICENSE", "CHANGELOG.md" ], "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" } }