dsh-home-sync 0.2.1

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.
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "dsh-home-sync",
3
+ "version": "0.2.1",
4
+ "description": "Git-based sync for DSH configuration and Mnemon memory plugin data, with automatic two-way sync, cross-device migration, initialization backups, conflict detection, and a web UI.",
5
+ "type": "module",
6
+ "main": "lib/index.js",
7
+ "files": ["lib", "cordis.patch.yml", "README.md", "README.zh-CN.md", "LICENSE"],
8
+ "engines": { "node": ">=20" },
9
+ "scripts": {
10
+ "test": "node --test test/*.test.mjs",
11
+ "check": "node --check lib/index.js && node --check lib/sync.js && node --check lib/ui.js"
12
+ },
13
+ "repository": { "type": "git", "url": "https://github.com/OverDustD7/dsh-home-sync.git" },
14
+ "homepage": "https://github.com/OverDustD7/dsh-home-sync#readme",
15
+ "bugs": { "url": "https://github.com/OverDustD7/dsh-home-sync/issues" },
16
+ "keywords": ["dsh", "deepseek-harness", "git-sync", "memory", "plugin"],
17
+ "license": "MIT",
18
+ "dsh": {
19
+ "bundle": {
20
+ "patch": "./cordis.patch.yml"
21
+ }
22
+ }
23
+ }