Files
Kilo-Org_kilocode/packages/kilo-memory/package.json
2026-06-18 14:48:18 +02:00

49 lines
1.3 KiB
JSON

{
"$schema": "https://json.schemastore.org/package.json",
"name": "@kilocode/kilo-memory",
"version": "7.3.45",
"type": "module",
"license": "MIT",
"description": "Project memory storage, indexing, recall, and command helpers for Kilo Code",
"keywords": [
"kilo",
"kilocode",
"memory",
"agent"
],
"exports": {
".": "./src/index.ts",
"./capture": "./src/capture/capture.ts",
"./commands": "./src/commands.ts",
"./digest": "./src/capture/digest.ts",
"./memory": "./src/memory.ts",
"./ops": "./src/capture/ops.ts",
"./paths": "./src/storage/paths.ts",
"./recall": "./src/recall/recall.ts",
"./redact": "./src/capture/redact.ts",
"./schema": "./src/schema.ts",
"./shared": "./src/recall/shared.ts",
"./store": "./src/storage/store.ts"
},
"files": [
"dist",
"src"
],
"scripts": {
"typecheck": "tsgo --noEmit",
"build": "tsc",
"test": "bun test --timeout 30000",
"test:ci": "mkdir -p .artifacts/unit && bun test --timeout 30000 --reporter=junit --reporter-outfile=.artifacts/unit/junit.xml"
},
"dependencies": {
"zod": "catalog:"
},
"devDependencies": {
"@tsconfig/node22": "catalog:",
"@types/node": "catalog:",
"@typescript/native-preview": "catalog:",
"typescript": "catalog:"
},
"peerDependencies": {}
}