{
  "name": "pi-session-search",
  "version": "1.4.3",
  "description": "Index, summarize, and search past pi sessions. Covers both active and archived sessions, enabling semantic search and introspection over your coding history.",
  "type": "module",
  "keywords": [
    "pi-package",
    "extension",
    "session",
    "search",
    "semantic-search",
    "embeddings"
  ],
  "files": [
    "src",
    "dist",
    "skills",
    "README.md",
    "LICENSE"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/samfoy/pi-session-search"
  },
  "pi": {
    "extensions": [
      "./dist/index.js"
    ],
    "skills": [
      "./skills"
    ]
  },
  "peerDependencies": {
    "@earendil-works/pi-coding-agent": "*",
    "@sinclair/typebox": "*"
  },
  "engines": {
    "node": ">=24"
  },
  "optionalDependencies": {
    "@aws-sdk/client-bedrock-runtime": "^3.700.0",
    "@aws-sdk/credential-providers": "^3.700.0"
  },
  "devDependencies": {
    "@types/node": "^25.5.0",
    "esbuild": "^0.28.0",
    "tsx": "^4.19.0",
    "typescript": "^6.0.3"
  },
  "scripts": {
    "test": "node --test --import tsx src/**/*.test.ts",
    "build": "esbuild src/index.ts --bundle --platform=node --format=esm --outfile=dist/index.js --sourcemap --packages=external --external:@earendil-works/pi-coding-agent --external:@sinclair/typebox",
    "check": "tsc --noEmit",
    "dev": "esbuild src/index.ts --bundle --platform=node --format=esm --outfile=dist/index.js --sourcemap --watch --packages=external --external:@earendil-works/pi-coding-agent --external:@sinclair/typebox",
    "prepare": "npm run build"
  }
}
