@clawmover/cli 0.0.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/LICENSE +21 -0
- package/README.md +288 -0
- package/dist/index.js +21 -0
- package/package.json +88 -0
package/package.json
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@clawmover/cli",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Backup, restore, and migrate OpenClaw data",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"clawmover": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "node scripts/build.js",
|
|
11
|
+
"build:ncc": "ncc build src/index.ts -o dist -m",
|
|
12
|
+
"dev": "ts-node src/index.ts",
|
|
13
|
+
"start": "node dist/index.js",
|
|
14
|
+
"test": "jest",
|
|
15
|
+
"test:watch": "jest --watch",
|
|
16
|
+
"test:coverage": "jest --coverage",
|
|
17
|
+
"lint": "eslint src --ext .ts",
|
|
18
|
+
"lint:fix": "eslint src --ext .ts --fix",
|
|
19
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
|
20
|
+
"clean": "node -e \"const fs=require('fs');fs.rmSync('dist',{recursive:true,force:true});fs.mkdirSync('dist',{recursive:true});\"",
|
|
21
|
+
"prepublishOnly": "npm run clean && npm run build && npm test"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"openclaw",
|
|
25
|
+
"openclaw backup",
|
|
26
|
+
"openclaw restore",
|
|
27
|
+
"openclaw migration",
|
|
28
|
+
"openclaw move",
|
|
29
|
+
"openclaw transfer",
|
|
30
|
+
"backup",
|
|
31
|
+
"restore",
|
|
32
|
+
"migration",
|
|
33
|
+
"cli",
|
|
34
|
+
"restic"
|
|
35
|
+
],
|
|
36
|
+
"author": "OpenClaw Team",
|
|
37
|
+
"license": "MIT",
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"axios": "^1.6.0",
|
|
40
|
+
"cli-progress": "^3.12.0",
|
|
41
|
+
"commander": "^11.1.0",
|
|
42
|
+
"enquirer": "^2.4.1",
|
|
43
|
+
"extract-zip": "^2.0.1",
|
|
44
|
+
"fs-extra": "^11.2.0",
|
|
45
|
+
"jsonc-parser": "^3.3.1",
|
|
46
|
+
"ora": "^7.0.1",
|
|
47
|
+
"pino": "^8.17.0",
|
|
48
|
+
"proxy-from-env": "^1.1.0",
|
|
49
|
+
"unbzip2-stream": "^1.4.3",
|
|
50
|
+
"undici": "^7.24.5"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@types/cli-progress": "^3.11.5",
|
|
54
|
+
"@types/fs-extra": "^11.0.4",
|
|
55
|
+
"@types/jest": "^29.5.11",
|
|
56
|
+
"@types/node": "^20.10.0",
|
|
57
|
+
"@types/proxy-from-env": "^1.0.4",
|
|
58
|
+
"@typescript-eslint/eslint-plugin": "^6.14.0",
|
|
59
|
+
"@typescript-eslint/parser": "^6.14.0",
|
|
60
|
+
"@vercel/ncc": "^0.38.4",
|
|
61
|
+
"esbuild": "^0.27.4",
|
|
62
|
+
"eslint": "^8.55.0",
|
|
63
|
+
"eslint-config-prettier": "^9.1.0",
|
|
64
|
+
"eslint-plugin-prettier": "^5.0.1",
|
|
65
|
+
"jest": "^29.7.0",
|
|
66
|
+
"prettier": "^3.1.1",
|
|
67
|
+
"terser": "^5.46.1",
|
|
68
|
+
"ts-jest": "^29.1.1",
|
|
69
|
+
"ts-node": "^10.9.2",
|
|
70
|
+
"typescript": "^5.3.3"
|
|
71
|
+
},
|
|
72
|
+
"engines": {
|
|
73
|
+
"node": ">=18.0.0"
|
|
74
|
+
},
|
|
75
|
+
"files": [
|
|
76
|
+
"dist",
|
|
77
|
+
"README.md",
|
|
78
|
+
"LICENSE"
|
|
79
|
+
],
|
|
80
|
+
"repository": {
|
|
81
|
+
"type": "git",
|
|
82
|
+
"url": "https://github.com/clawmover/clawmover-cli"
|
|
83
|
+
},
|
|
84
|
+
"bugs": {
|
|
85
|
+
"url": "https://github.com/clawmover/clawmover-cli/issues"
|
|
86
|
+
},
|
|
87
|
+
"homepage": "https://github.com/clawmover/clawmover-cli"
|
|
88
|
+
}
|