{
  "name": "@fingerskier/augment",
  "version": "0.7.0",
  "description": "Local RAG memory system for coding agents",
  "keywords": [
    "pi-package",
    "pi",
    "opencode",
    "memory",
    "rag",
    "mcp",
    "coding-agent"
  ],
  "type": "module",
  "main": "./dist/opencode/plugin.js",
  "types": "./dist/opencode/plugin.d.ts",
  "publishConfig": {
    "access": "public"
  },
  "bin": {
    "augment": "./dist/bin/augment.js",
    "augment-daemon": "./dist/bin/augment-daemon.js",
    "augment-mcp": "./dist/bin/augment-mcp.js"
  },
  "pi": {
    "extensions": [
      "./dist/pi/extension.js"
    ],
    "skills": [
      "./integrations/pi/skills"
    ]
  },
  "files": [
    "dist",
    "docs",
    "integrations",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "clean": "node --eval \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
    "build": "npm run clean && tsc -p tsconfig.json",
    "test": "node --import tsx --test \"test/**/*.test.ts\"",
    "test:model": "node --import tsx --import ./test/setup-real-model.mjs --test \"test/**/*.model.ts\"",
    "bench:search": "node --import tsx scripts/bench-search.ts",
    "check": "npm run build && npm test",
    "prepack": "npm run check",
    "prepublishOnly": "npm run check"
  },
  "peerDependencies": {
    "@earendil-works/pi-ai": "*",
    "@earendil-works/pi-coding-agent": "*",
    "typebox": "*"
  },
  "peerDependenciesMeta": {
    "@earendil-works/pi-ai": {
      "optional": true
    },
    "@earendil-works/pi-coding-agent": {
      "optional": true
    },
    "typebox": {
      "optional": true
    }
  },
  "dependencies": {
    "@huggingface/transformers": "^3.8.0",
    "@libsql/client": "^0.15.15",
    "@modelcontextprotocol/sdk": "^1.29.0",
    "chokidar": "^4.0.3",
    "cytoscape": "^3.34.0",
    "gray-matter": "^4.0.3",
    "zod": "^3.25.76"
  },
  "devDependencies": {
    "@opencode-ai/plugin": "^1.17.15",
    "@types/node": "^24.3.0",
    "tsx": "^4.20.5",
    "typebox": "^1.1.38",
    "typescript": "^5.9.2"
  },
  "engines": {
    "node": ">=20"
  },
  "license": "Apache-2.0"
}
