Files
clawhdf5/packages/clawhdf5-node/package.json
T
osobhandClaude Fable 5.1 4aa3c5a1ca chore(release): v2.4.0
Bump all workspace crates, the node package and pyproject to 2.4.0, finalize
the changelog and add upgrade notes for the search behaviour changes.

Co-Authored-By: Claude Fable 5.1 <[email protected]>
2026-09-19 13:32:47 -07:00

56 lines
1.3 KiB
JSON

{
"name": "@redclaw/clawhdf5",
"version": "2.4.0",
"description": "Node.js bindings for clawhdf5 — HDF5-backed agent memory with hippocampal consolidation",
"main": "index.js",
"types": "index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://git.redclaw.dev/quantumclaw/clawhdf5"
},
"keywords": [
"agent",
"memory",
"hdf5",
"vector-search",
"embedding",
"openclaw"
],
"napi": {
"name": "clawhdf5",
"triples": {
"defaults": true,
"additional": [
"aarch64-unknown-linux-gnu",
"aarch64-apple-darwin"
]
}
},
"scripts": {
"build": "napi build --platform --release --cargo-cwd ../../crates/clawhdf5-napi",
"build:debug": "napi build --platform --cargo-cwd ../../crates/clawhdf5-napi",
"prepublishOnly": "napi prepublish -t npm",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@napi-rs/cli": "^2.18.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.ts"
]
},
"engines": {
"node": ">= 16"
}
}