{
  "name": "@0xkobold/pi-learn",
  "version": "0.4.0",
  "description": "Open-source memory infrastructure for pi agents - inspired by Honcho. Provides peer representations, reasoning, and context assembly for stateful AI agents.",
  "keywords": [
    "pi-package",
    "memory",
    "agent",
    "honcho",
    "learning"
  ],
  "author": "Warren Gates <wbgates@gmail.com>",
  "license": "MIT",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./shared": {
      "import": "./dist/shared.js",
      "types": "./dist/shared.d.ts"
    },
    "./renderers": {
      "import": "./dist/renderers.js",
      "types": "./dist/renderers.d.ts"
    },
    "./core/store": {
      "import": "./dist/core/store.js",
      "types": "./dist/core/store.d.ts"
    },
    "./core/reasoning": {
      "import": "./dist/core/reasoning.js",
      "types": "./dist/core/reasoning.d.ts"
    },
    "./core/context": {
      "import": "./dist/core/context.js",
      "types": "./dist/core/context.d.ts"
    }
  },
  "files": [
    "dist/",
    "README.md",
    "SKILL.md",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "tsc && node build-extension.js",
    "build:tsc": "tsc",
    "dev": "tsc --watch",
    "test": "vitest run tests/fast-e2e.test.ts",
    "test:all": "vitest run tests/fast-e2e.test.ts tests/hybrid.test.ts tests/renderers.test.ts tests/shared.test.ts tests/store.test.ts tests/store.unit.test.ts",
    "test:watch": "vitest",
    "prepublishOnly": "npm run build"
  },
  "pi": {
    "extensions": ["./dist/index.js"]
  },
  "peerDependencies": {
    "@mariozechner/pi-coding-agent": ">=0.62.0",
    "@sinclair/typebox": ">=0.32.0",
    "ollama": ">=0.6.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/0xKobold/pi-learn"
  },
  "bugs": {
    "url": "https://github.com/0xKobold/pi-learn/issues"
  },
  "homepage": "https://github.com/0xKobold/pi-learn#readme",
  "dependencies": {
    "@0xkobold/pi-ollama": "^0.2.0",
    "sql.js": "^1.14.1"
  },
  "devDependencies": {
    "@mariozechner/pi-coding-agent": "^0.62.0",
    "@mariozechner/pi-tui": "^0.62.0",
    "@sinclair/typebox": "^0.34.48",
    "@types/node": "^25.5.0",
    "@types/sql.js": "^1.4.11",
    "bun-types": "^1.3.11",
    "esbuild": "^0.28.0",
    "typescript": "^5.9.3",
    "vitest": "^4.1.1"
  },
  "vitest": {
    "include": [
      "tests/**/*.test.ts"
    ],
    "exclude": [
      "node_modules",
      "dist",
      "tests/hybrid-integration.test.mjs"
    ],
    "coverage": {
      "enabled": false
    }
  }
}
