@lark-apaas/openclaw-scripts-diagnose-cli 0.1.1 → 0.1.3
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/README.md +7 -1
- package/dist/index.cjs +1818 -234
- package/package.json +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lark-apaas/openclaw-scripts-diagnose-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "CLI for OpenClaw config diagnose and repair with JSON5 support",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"bin": {
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
"test": "vitest run",
|
|
16
16
|
"test:watch": "vitest",
|
|
17
17
|
"test:integration": "vitest run --config vitest.integration.config.ts",
|
|
18
|
+
"test:innerapi-live": "vitest run --config vitest.integration.config.ts test/innerapi-live.test.ts",
|
|
18
19
|
"sync:template": "bash scripts/sync-template.sh",
|
|
19
20
|
"prepublishOnly": "npm run build"
|
|
20
21
|
},
|
|
@@ -31,6 +32,7 @@
|
|
|
31
32
|
"access": "public"
|
|
32
33
|
},
|
|
33
34
|
"dependencies": {
|
|
35
|
+
"@lark-apaas/http-client": "^0.1.5",
|
|
34
36
|
"json5": "^2.2.3"
|
|
35
37
|
},
|
|
36
38
|
"devDependencies": {
|