fix(package): rename package namespace from @push.rocks to @serve.zone

This commit is contained in:
2026-03-23 09:22:26 +00:00
parent 3cb0be8f56
commit 6401790b6a
5 changed files with 18 additions and 12 deletions

View File

@@ -1,4 +1,4 @@
# @push.rocks/containerarchive
# @serve.zone/containerarchive
A high-performance, content-addressed incremental backup engine with built-in deduplication, encryption, compression, and Reed-Solomon error correction — powered by a Rust core with a clean TypeScript API.
@@ -9,7 +9,7 @@ For reporting bugs, issues, or security vulnerabilities, please visit [community
## Install
```bash
pnpm install @push.rocks/containerarchive
pnpm install @serve.zone/containerarchive
```
## 🏗️ Architecture
@@ -55,7 +55,7 @@ containerarchive uses a **hybrid Rust + TypeScript architecture**. The heavy lif
### Initialize a New Repository
```typescript
import { ContainerArchive } from '@push.rocks/containerarchive';
import { ContainerArchive } from '@serve.zone/containerarchive';
// Unencrypted repository
const repo = await ContainerArchive.init('/path/to/backup-repo');