@tinyrack/dotweave 0.39.5 → 0.39.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +54 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,54 @@
1
+ <div align="center">
2
+
3
+ # Dotweave
4
+
5
+ **Git-backed configuration sync for your development environment.**
6
+
7
+ [![CI](https://github.com/tinyrack-net/dotweave/actions/workflows/ci.yml/badge.svg)](https://github.com/tinyrack-net/dotweave/actions/workflows/ci.yml)
8
+ [![npm](https://img.shields.io/npm/v/@tinyrack/dotweave)](https://www.npmjs.com/package/@tinyrack/dotweave)
9
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
10
+ [![Node.js](https://img.shields.io/badge/node-%3E%3D24-brightgreen)](https://nodejs.org/)
11
+
12
+ [Documentation](https://dotweave.tinyrack.net/en/) · [Getting Started](https://dotweave.tinyrack.net/en/getting-started/) · [한국어](https://dotweave.tinyrack.net/ko/)
13
+
14
+ </div>
15
+
16
+ ---
17
+
18
+ Dotweave is a cross-platform CLI that syncs the configuration files in your home directory across multiple devices using git.
19
+
20
+ Most dotfiles tools start from the repository and ask you to shape your local system around it. Dotweave takes the opposite approach — your real config under `HOME` is the source of truth, and the git repository is just the sync artifact.
21
+
22
+ ## Features
23
+
24
+ - **Track files and directories** under your home directory
25
+ - **Encrypt secrets** with [age](https://github.com/FiloSottile/age) before storing in the repo
26
+ - **Profiles** for syncing different subsets on different machines
27
+ - **Platform-specific paths** across Windows, macOS, Linux, and WSL
28
+ - **Dry-run previews** for both push and pull directions
29
+
30
+ ## Quick Start
31
+
32
+ ```bash
33
+ # Install
34
+ npm install -g @tinyrack/dotweave
35
+
36
+ # Initialize
37
+ dotweave init
38
+
39
+ # Track some configs
40
+ dotweave track ~/.gitconfig
41
+ dotweave track ~/.zshrc
42
+ dotweave track ~/.ssh/config --mode secret
43
+
44
+ # Push local state to sync repo
45
+ dotweave push
46
+ ```
47
+
48
+ ## Documentation
49
+
50
+ For detailed guides, command reference, and troubleshooting, visit the **[Dotweave documentation site](https://dotweave.tinyrack.net/en/)**.
51
+
52
+ ## License
53
+
54
+ [MIT](LICENSE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tinyrack/dotweave",
3
- "version": "0.39.5",
3
+ "version": "0.39.7",
4
4
  "description": "A personal CLI tool for git-backed configuration sync.",
5
5
  "type": "module",
6
6
  "license": "MIT",