@octocodeai/octocode-engine 16.5.0 → 16.5.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@octocodeai/octocode-engine",
3
- "version": "16.5.0",
3
+ "version": "16.5.1",
4
4
  "description": "Rust native Octocode engine for context compression, structural search, and LSP semantic navigation",
5
5
  "type": "module",
6
6
  "main": "index.cjs",
@@ -227,12 +227,12 @@
227
227
  "README.md"
228
228
  ],
229
229
  "optionalDependencies": {
230
- "@octocodeai/octocode-engine-darwin-arm64": "16.5.0",
231
- "@octocodeai/octocode-engine-darwin-x64": "16.5.0",
232
- "@octocodeai/octocode-engine-linux-arm64-gnu": "16.5.0",
233
- "@octocodeai/octocode-engine-linux-x64-gnu": "16.5.0",
234
- "@octocodeai/octocode-engine-linux-x64-musl": "16.5.0",
235
- "@octocodeai/octocode-engine-win32-x64-msvc": "16.5.0"
230
+ "@octocodeai/octocode-engine-darwin-arm64": "16.5.1",
231
+ "@octocodeai/octocode-engine-darwin-x64": "16.5.1",
232
+ "@octocodeai/octocode-engine-linux-arm64-gnu": "16.5.1",
233
+ "@octocodeai/octocode-engine-linux-x64-gnu": "16.5.1",
234
+ "@octocodeai/octocode-engine-linux-x64-musl": "16.5.1",
235
+ "@octocodeai/octocode-engine-win32-x64-msvc": "16.5.1"
236
236
  },
237
237
  "engines": {
238
238
  "node": ">=20.0.0"
@@ -265,6 +265,9 @@
265
265
  "pack:check": "node scripts/check-pack-size.cjs",
266
266
  "platforms:check": "node scripts/check-platform-binaries.cjs",
267
267
  "version:check": "node scripts/check-version-consistency.cjs",
268
+ "version:sync": "node scripts/sync-versions.cjs",
269
+ "loader:check": "node scripts/check-loader-entries.cjs",
270
+ "prepublish:verify": "yarn version:check && yarn loader:check && yarn pack:check && yarn platforms:check",
268
271
  "binary-size:check": "node scripts/check-binary-size.cjs",
269
272
  "ast:check": "yarn workspace @octocodeai/octocode-benchmark ast:check",
270
273
  "lsp:check": "yarn workspace @octocodeai/octocode-benchmark lsp:check",
@@ -282,18 +285,21 @@
282
285
  "test:node:coverage": "vitest run --coverage",
283
286
  "test:watch": "vitest watch",
284
287
  "test:quiet": "vitest run",
285
- "lint": "echo 'No TS source files to lint'",
288
+ "lint": "yarn lint:rust",
289
+ "lint:fix": "yarn fmt:rust",
286
290
  "lint:rust": "cargo clippy --all-targets --all-features -- -D warnings",
287
291
  "typecheck": "tsc --noEmit",
288
292
  "deps:rust": "cargo tree --duplicates",
293
+ "udeps:rust": "cargo +nightly udeps --all-targets --all-features",
289
294
  "deps:dedupe": "node ../../scripts/dedupe-deps.mjs",
290
295
  "deps:dedupe:fix": "node ../../scripts/dedupe-deps.mjs --fix",
291
296
  "audit:rust": "cargo audit -D unmaintained -D unsound -D yanked",
292
297
  "audit": "yarn audit:rust",
293
- "verify:rust": "yarn check:rust && yarn fmt:rust:check && yarn lint:rust && yarn test:rust && yarn deps:rust && yarn audit:rust",
294
- "verify": "yarn verify:patterns && yarn typecheck && yarn verify:rust && yarn test && yarn benchmark && yarn pack:check && yarn version:check && yarn binary-size:check",
298
+ "verify:rust": "yarn check:rust && yarn fmt:rust:check && yarn lint:rust && yarn test:rust && yarn deps:rust && yarn udeps:rust && yarn audit:rust",
299
+ "verify": "yarn verify:patterns && yarn typecheck && yarn verify:rust && yarn test && yarn benchmark && yarn pack:check && yarn version:check && yarn loader:check && yarn binary-size:check",
295
300
  "readme:sync": "node ../../scripts/sync-package-readmes.mjs .",
296
- "prepack": "yarn readme:sync"
301
+ "prepack": "yarn readme:sync",
302
+ "prepublishOnly": "yarn version:sync"
297
303
  },
298
304
  "dependencies": {
299
305
  "typescript": "^5.9.3",