@fizzyflow/wdoublesync_cli 1.0.2

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,35 @@
1
+ {
2
+ "name": "@fizzyflow/wdoublesync_cli",
3
+ "version": "1.0.2",
4
+ "type": "module",
5
+ "description": "CLI tool built on the wdoublesync library to sync local folders to Walrus decentralised storage on the Sui network. Stores versioned gzip-compressed snapshots and diffs inside an EndlessVector on-chain object. Supports Seal encryption, manifest-based fast change detection, and full version history with point-in-time restore.",
6
+ "bin": {
7
+ "wdoublesync": "./bin/wdoublesync.js"
8
+ },
9
+ "publishConfig": {
10
+ "access": "public"
11
+ },
12
+ "scripts": {
13
+ "test": "echo \"Error: no test specified\" && exit 1",
14
+ "pull:test": "mkdir -p test_pull && cd test_pull && node ../bin/wdoublesync.js pull 0x69d7d77c55d66c4c6d0a87d120caf0535fdbb3c8c414658f81f66a4d50c80120 --chain testnet",
15
+ "push:test": "cd test_pull && node ../bin/wdoublesync.js push 0x69d7d77c55d66c4c6d0a87d120caf0535fdbb3c8c414658f81f66a4d50c80120 --chain testnet",
16
+ "pushfull:test": "cd test_pull && node ../bin/wdoublesync.js push 0x69d7d77c55d66c4c6d0a87d120caf0535fdbb3c8c414658f81f66a4d50c80120 --chain testnet --force-snapshot",
17
+ "info:test": "cd test_pull && node ../bin/wdoublesync.js info 0x69d7d77c55d66c4c6d0a87d120caf0535fdbb3c8c414658f81f66a4d50c80120 --chain testnet",
18
+ "watch:test": "cd test_pull && node ../bin/wdoublesync.js watch 0x69d7d77c55d66c4c6d0a87d120caf0535fdbb3c8c414658f81f66a4d50c80120 --chain testnet"
19
+ },
20
+ "keywords": [],
21
+ "author": "suidouble (https://github.com/suidouble)",
22
+ "license": "AGPL-3.0",
23
+ "packageManager": "pnpm@10.16.0",
24
+ "dependencies": {
25
+ "suidouble": "^2.17.0-3",
26
+ "@fizzyflow/doublesync": "^0.1.0",
27
+ "@fizzyflow/wdoublesync": "^0.1.7",
28
+ "@fizzyflow/endless-vector": "^0.0.13",
29
+ "@mysten/seal": "^1.1.3",
30
+ "@noble/ciphers": "^2.2.0"
31
+ },
32
+ "devDependencies": {
33
+ "walrus-seal-client-with-local": "file:../seal_walrus_localnet"
34
+ }
35
+ }