|
1 | 1 | { |
2 | 2 | "name": "@truenine/memory-sync-cli", |
3 | 3 | "type": "module", |
4 | | - "version": "2026.10328.106", |
| 4 | + "version": "2026.10329.110", |
5 | 5 | "description": "TrueNine Memory Synchronization CLI", |
6 | 6 | "author": "TrueNine", |
7 | 7 | "license": "AGPL-3.0-only", |
|
51 | 51 | "build": "run-s build:deps build:napi bundle finalize:bundle generate:schema", |
52 | 52 | "build:napi": "tsx ../scripts/copy-napi.ts", |
53 | 53 | "build:deps": "pnpm -F @truenine/logger -F @truenine/md-compiler -F @truenine/script-runtime run build", |
| 54 | + "build:deps:ts": "pnpm -F @truenine/logger -F @truenine/md-compiler -F @truenine/script-runtime run build:ts", |
54 | 55 | "bundle": "tsx ../scripts/build-quiet.ts", |
55 | | - "check": "run-p typecheck lint", |
| 56 | + "check": "run-s build:deps:ts check:run", |
| 57 | + "check:run": "run-p lint:run typecheck:run", |
56 | 58 | "finalize:bundle": "tsx scripts/finalize-bundle.ts", |
57 | 59 | "generate:schema": "tsx scripts/generate-schema.ts", |
58 | | - "lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache .", |
| 60 | + "lint": "run-s build:deps:ts lint:run", |
| 61 | + "lint:run": "eslint --cache --cache-location node_modules/.cache/.eslintcache .", |
59 | 62 | "prepublishOnly": "run-s build check", |
60 | 63 | "test": "run-s build:deps test:run", |
61 | 64 | "test:native-cleanup-smoke": "tsx scripts/cleanup-native-smoke.ts", |
62 | 65 | "test:run": "vitest run", |
63 | 66 | "benchmark:cleanup": "tsx scripts/benchmark-cleanup.ts", |
64 | | - "lintfix": "eslint --fix --cache --cache-location node_modules/.cache/.eslintcache .", |
65 | | - "typecheck": "tsc --noEmit -p tsconfig.lib.json" |
| 67 | + "lintfix": "run-s build:deps:ts lintfix:run", |
| 68 | + "lintfix:run": "eslint --fix --cache --cache-location node_modules/.cache/.eslintcache .", |
| 69 | + "typecheck": "run-s build:deps:ts typecheck:run", |
| 70 | + "typecheck:run": "tsc --noEmit -p tsconfig.lib.json" |
66 | 71 | }, |
67 | 72 | "dependencies": { |
68 | 73 | "json5": "catalog:", |
|
0 commit comments