From ee0e2c85f4a63e176c3777f36203bba8246432b6 Mon Sep 17 00:00:00 2001 From: MatMoul Date: Sun, 10 May 2026 00:43:00 +0200 Subject: [PATCH] chore: rename project to ts-pykeepass-wrapper --- .memory/state.md | 2 +- README.md | 2 +- package.json | 2 +- tests/integration/pykeepass.test.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.memory/state.md b/.memory/state.md index 8c6c2ba..5aa100d 100644 --- a/.memory/state.md +++ b/.memory/state.md @@ -2,4 +2,4 @@ - Added failure-path, command-forwarding, and keyFile payload unit tests for the bridge. - Latest unit and full test runs passed. -- Current focus remains the TypeScript wrapper + Python bridge for KeePass. +- Project renamed to ts-pykeepass-wrapper; current focus remains the TypeScript wrapper + Python bridge for KeePass. diff --git a/README.md b/README.md index a1504b6..95e3c7c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# kdbx-lib +# ts-pykeepass-wrapper TypeScript wrapper around `pykeepass` for reading and modifying KeePass `.kdbx` files. diff --git a/package.json b/package.json index 589d5cc..6ba4b00 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "kdbx-lib", + "name": "ts-pykeepass-wrapper", "packageManager": "bun@1.0.0", "version": "0.1.0", "private": true, diff --git a/tests/integration/pykeepass.test.ts b/tests/integration/pykeepass.test.ts index 0cb74c8..107fea9 100644 --- a/tests/integration/pykeepass.test.ts +++ b/tests/integration/pykeepass.test.ts @@ -29,7 +29,7 @@ const FIXTURE_PATH = "tests/fixtures/data.kdbx"; const FIXTURE_DATA_PATH = "tests/fixtures/data.kdbx.json"; async function withTempCopy(filePath: string, fn: (tempPath: string) => Promise): Promise { - const tempPath = join(tmpdir(), `kdbx-lib-${randomUUID()}.kdbx`); + const tempPath = join(tmpdir(), `ts-pykeepass-wrapper-${randomUUID()}.kdbx`); await copyFile(filePath, tempPath); try { return await fn(tempPath);