@truenine/memory-sync-cli 2026.10327.10010 → 2026.10329.110

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.
@@ -157,6 +157,26 @@
157
157
  "dist"
158
158
  ],
159
159
  "additionalProperties": false
160
+ },
161
+ "softwares": {
162
+ "type": "object",
163
+ "properties": {
164
+ "src": {
165
+ "type": "string"
166
+ },
167
+ "dist": {
168
+ "type": "string"
169
+ }
170
+ },
171
+ "required": [
172
+ "src",
173
+ "dist"
174
+ ],
175
+ "additionalProperties": false,
176
+ "default": {
177
+ "src": "softwares",
178
+ "dist": "dist/softwares"
179
+ }
160
180
  }
161
181
  },
162
182
  "required": [
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@truenine/memory-sync-cli",
3
3
  "type": "module",
4
- "version": "2026.10327.10010",
4
+ "version": "2026.10329.110",
5
5
  "description": "TrueNine Memory Synchronization CLI",
6
6
  "author": "TrueNine",
7
7
  "license": "AGPL-3.0-only",
@@ -53,17 +53,17 @@
53
53
  "zod": "^4.3.6"
54
54
  },
55
55
  "optionalDependencies": {
56
- "@truenine/memory-sync-cli-darwin-arm64": "2026.10327.10010",
57
- "@truenine/memory-sync-cli-darwin-x64": "2026.10327.10010",
58
- "@truenine/memory-sync-cli-win32-x64-msvc": "2026.10327.10010",
59
- "@truenine/memory-sync-cli-linux-arm64-gnu": "2026.10327.10010",
60
- "@truenine/memory-sync-cli-linux-x64-gnu": "2026.10327.10010"
56
+ "@truenine/memory-sync-cli-linux-arm64-gnu": "2026.10329.110",
57
+ "@truenine/memory-sync-cli-darwin-x64": "2026.10329.110",
58
+ "@truenine/memory-sync-cli-darwin-arm64": "2026.10329.110",
59
+ "@truenine/memory-sync-cli-linux-x64-gnu": "2026.10329.110",
60
+ "@truenine/memory-sync-cli-win32-x64-msvc": "2026.10329.110"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@clack/prompts": "^1.1.0",
64
64
  "@types/fs-extra": "^11.0.4",
65
65
  "@types/picomatch": "^4.0.2",
66
- "@vitest/coverage-v8": "4.1.1",
66
+ "@vitest/coverage-v8": "4.1.2",
67
67
  "fast-glob": "^3.3.3",
68
68
  "fs-extra": "^11.3.4",
69
69
  "jiti": "^2.6.1",
@@ -71,24 +71,31 @@
71
71
  "picocolors": "^1.1.1",
72
72
  "picomatch": "^4.0.4",
73
73
  "tsx": "^4.21.0",
74
- "vitest": "^4.1.1",
75
- "zod-to-json-schema": "^3.25.1",
76
- "@truenine/logger": "2026.10327.10010",
77
- "@truenine/md-compiler": "2026.10327.10010",
78
- "@truenine/script-runtime": "2026.10327.10010"
74
+ "vitest": "^4.1.2",
75
+ "zod-to-json-schema": "^3.25.2",
76
+ "@truenine/md-compiler": "2026.10329.110",
77
+ "@truenine/logger": "2026.10329.110",
78
+ "@truenine/script-runtime": "2026.10329.110"
79
79
  },
80
80
  "scripts": {
81
- "build": "run-s build:deps build:napi bundle finalize:bundle generate:schema check",
81
+ "build": "run-s build:deps build:napi bundle finalize:bundle generate:schema",
82
82
  "build:napi": "tsx ../scripts/copy-napi.ts",
83
83
  "build:deps": "pnpm -F @truenine/logger -F @truenine/md-compiler -F @truenine/script-runtime run build",
84
+ "build:deps:ts": "pnpm -F @truenine/logger -F @truenine/md-compiler -F @truenine/script-runtime run build:ts",
84
85
  "bundle": "tsx ../scripts/build-quiet.ts",
85
- "check": "run-p typecheck lint",
86
+ "check": "run-s build:deps:ts check:run",
87
+ "check:run": "run-p lint:run typecheck:run",
86
88
  "finalize:bundle": "tsx scripts/finalize-bundle.ts",
87
89
  "generate:schema": "tsx scripts/generate-schema.ts",
88
- "lint": "eslint --cache .",
90
+ "lint": "run-s build:deps:ts lint:run",
91
+ "lint:run": "eslint --cache --cache-location node_modules/.cache/.eslintcache .",
89
92
  "test": "run-s build:deps test:run",
93
+ "test:native-cleanup-smoke": "tsx scripts/cleanup-native-smoke.ts",
90
94
  "test:run": "vitest run",
91
- "lintfix": "eslint --fix --cache .",
92
- "typecheck": "tsc --noEmit -p tsconfig.lib.json"
95
+ "benchmark:cleanup": "tsx scripts/benchmark-cleanup.ts",
96
+ "lintfix": "run-s build:deps:ts lintfix:run",
97
+ "lintfix:run": "eslint --fix --cache --cache-location node_modules/.cache/.eslintcache .",
98
+ "typecheck": "run-s build:deps:ts typecheck:run",
99
+ "typecheck:run": "tsc --noEmit -p tsconfig.lib.json"
93
100
  }
94
101
  }