@truenine/memory-sync-cli 2026.10402.116 → 2026.10403.117

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@truenine/memory-sync-cli",
3
3
  "type": "module",
4
- "version": "2026.10402.116",
4
+ "version": "2026.10403.117",
5
5
  "description": "TrueNine Memory Synchronization CLI shell",
6
6
  "author": "TrueNine",
7
7
  "license": "AGPL-3.0-only",
@@ -52,12 +52,12 @@
52
52
  "json5": "^2.2.3",
53
53
  "yaml": "^2.8.3",
54
54
  "zod": "^4.3.6",
55
- "@truenine/memory-sync-cli-darwin-arm64": "2026.10402.116",
56
- "@truenine/memory-sync-cli-darwin-x64": "2026.10402.116",
57
- "@truenine/memory-sync-cli-linux-x64-gnu": "2026.10402.116",
58
- "@truenine/memory-sync-cli-linux-arm64-gnu": "2026.10402.116",
59
- "@truenine/memory-sync-cli-win32-x64-msvc": "2026.10402.116",
60
- "@truenine/script-runtime": "2026.10402.116"
55
+ "@truenine/memory-sync-cli-darwin-arm64": "2026.10403.117",
56
+ "@truenine/memory-sync-cli-darwin-x64": "2026.10403.117",
57
+ "@truenine/memory-sync-cli-linux-arm64-gnu": "2026.10403.117",
58
+ "@truenine/memory-sync-cli-linux-x64-gnu": "2026.10403.117",
59
+ "@truenine/memory-sync-cli-win32-x64-msvc": "2026.10403.117",
60
+ "@truenine/script-runtime": "2026.10403.117"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@truenine/eslint10-config": "^2026.10402.10314",
@@ -69,7 +69,7 @@
69
69
  "tsx": "^4.21.0",
70
70
  "typescript": "6.0.2",
71
71
  "vitest": "^4.1.2",
72
- "@truenine/memory-sync-sdk": "2026.10402.116"
72
+ "@truenine/memory-sync-sdk": "2026.10403.117"
73
73
  },
74
74
  "scripts": {
75
75
  "build": "run-s build:sdk build:shell sync:sdk-assets",
@@ -79,14 +79,14 @@
79
79
  "ensure:sdk-build": "tsx scripts/ensure-sdk-build.ts",
80
80
  "sync:sdk-assets": "tsx scripts/sync-sdk-dist.ts",
81
81
  "check": "run-s ensure:sdk-build check:run",
82
- "check:run": "run-p lint:run typecheck:run",
82
+ "check:run": "run-p lint:run check:type:run",
83
83
  "lint": "run-s ensure:sdk-build lint:run",
84
- "lint:run": "eslint --cache --cache-location node_modules/.cache/.eslintcache .",
84
+ "lint:run": "eslint --cache --cache-location .eslintcache .",
85
85
  "test": "run-s ensure:sdk-build test:run",
86
86
  "test:run": "vitest run",
87
- "lintfix": "run-s ensure:sdk-build lintfix:run",
88
- "lintfix:run": "eslint --fix --cache --cache-location node_modules/.cache/.eslintcache .",
89
- "typecheck": "run-s ensure:sdk-build typecheck:run",
90
- "typecheck:run": "tsc --noEmit -p tsconfig.lib.json"
87
+ "lint:fix": "run-s ensure:sdk-build lint:fix:run",
88
+ "lint:fix:run": "eslint --fix --cache --cache-location .eslintcache .",
89
+ "typecheck": "run-s ensure:sdk-build check:type:run",
90
+ "check:type:run": "tsc --noEmit -p tsconfig.lib.json"
91
91
  }
92
92
  }