{
  "name": "@ai-pip/core",
  "version": "0.5.0",
  "description": "Core implementation of the AI-PIP protocol. Provides layered, zero-trust context processing (CSL, ISL, AAL) and transversal integrity (CPE)",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./csl": {
      "types": "./dist/csl/index.d.ts",
      "import": "./dist/csl/index.js",
      "default": "./dist/csl/index.js"
    },
    "./isl": {
      "types": "./dist/isl/index.d.ts",
      "import": "./dist/isl/index.js",
      "default": "./dist/isl/index.js"
    },
    "./aal": {
      "types": "./dist/AAL/index.d.ts",
      "import": "./dist/AAL/index.js",
      "default": "./dist/AAL/index.js"
    },
    "./cpe": {
      "types": "./dist/shared/envelope/index.d.ts",
      "import": "./dist/shared/envelope/index.js",
      "default": "./dist/shared/envelope/index.js"
    },
    "./shared": {
      "types": "./dist/shared/index.d.ts",
      "import": "./dist/shared/index.js",
      "default": "./dist/shared/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">= 18.0.0"
  },
  "keywords": [
    "ai",
    "security",
    "prompt-injection",
    "context-processing",
    "zero-trust"
  ],
  "author": "MasliahDev d3vTek-mv@outlook.com",
  "repository": {
    "type": "git",
    "url": "https://github.com/AI-PIP/ai-pip-core"
  },
  "bugs": {
    "url": "https://github.com/AI-PIP/ai-pip-core/issues"
  },
  "homepage": "https://github.com/AI-PIP/ai-pip-core#readme",
  "license": "Apache-2.0",
  "changelog": "https://github.com/AI-PIP/ai-pip-core/blob/main/CHANGELOG.md",
  "devDependencies": {
    "@eslint/js": "^9.39.2",
    "@types/node": "^22.19.3",
    "@vitest/coverage-v8": "^2.1.9",
    "eslint": "^9.39.2",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.50.1",
    "vitest": "^2.1.9"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "dev": "tsx src/index.ts",
    "type-check": "tsc --noEmit",
    "build": "tsc",
    "lint": "eslint src --max-warnings=0",
    "test": "vitest",
    "test:watch": "vitest --watch",
    "test:ui": "vitest --ui",
    "test:coverage": "vitest --coverage",
    "test:install": "node test-package-install.js",
    "test:tags": "node scripts/test-tags-exhaustive.mjs",
    "verify-risk": "node scripts/verify-risk-score.mjs",
    "demo-menu": "node scripts/interactive-risk-menu.mjs",
    "demo-full": "node scripts/demo-full-flow.mjs",
    "audit-report": "node scripts/audit-report.mjs",
    "scan-removal": "node scripts/scan-removal.mjs"
  }
}