-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.4 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "openclaw-workspace-sync",
"version": "2.4.1",
"description": "Workspace cloud sync & encrypted backup via rclone — mailbox, mirror, bisync + AES-256 snapshots (Dropbox, S3, R2, 70+ providers)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": "Ash Brener <ash@frisb.com> (https://github.com/ashbrener)",
"repository": {
"type": "git",
"url": "https://github.com/ashbrener/openclaw-workspace-sync.git"
},
"keywords": [
"openclaw",
"openclaw-plugin",
"workspace",
"sync",
"rclone",
"dropbox",
"google-drive",
"s3",
"cloud-storage",
"backup"
],
"files": [
"dist",
"docs",
"skills",
"openclaw.plugin.json",
"README.md",
"TROUBLESHOOTING.md",
"LICENSE"
],
"dependencies": {
"@clack/prompts": "^1.0.1"
},
"devDependencies": {
"@mermaid-js/mermaid-cli": "^11.12.0",
"@types/node": "^22.19.11",
"typescript": "5.7",
"vitest": "^3.2.4"
},
"openclaw": {
"extensions": [
"./dist/index.js"
],
"compat": {
"pluginApi": ">=2026.1.0"
},
"build": {
"openclawVersion": "2026.1.0",
"pluginSdkVersion": "2026.1.0"
}
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"render-readme": "node scripts/render-mermaid.js",
"test": "vitest run",
"test:watch": "vitest"
}
}