checksumai 4.4.1 → 4.4.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.4.2](https://github.com/checksum-ai/checksum-ai-monorepo/compare/runtime-wrapper-v4.4.1...runtime-wrapper-v4.4.2) (2026-06-17)
4
+
5
+
6
+ ### Performance Improvements
7
+
8
+ * **runtime,runtime-wrapper:** Drop ts-node CLI + npx fanout to cut per-pod memory [pkg:eslint-config,nodejs-lib,runtime,runtime-wrapper] ([#3141](https://github.com/checksum-ai/checksum-ai-monorepo/issues/3141)) ([90f85fe](https://github.com/checksum-ai/checksum-ai-monorepo/commit/90f85fed977c01cff0e8b081234041d53440a784))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @checksum-ai/runtime bumped from 4.4.1 to 4.4.2
16
+
3
17
  ## [4.4.1](https://github.com/checksum-ai/checksum-ai-monorepo/compare/runtime-wrapper-v4.4.0...runtime-wrapper-v4.4.1) (2026-06-16)
4
18
 
5
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "checksumai",
3
- "version": "4.4.1",
3
+ "version": "4.4.2",
4
4
  "description": "Checksum.ai runtime base package",
5
5
  "main": "./run.js",
6
6
  "type": "module",
@@ -11,8 +11,7 @@
11
11
  "checksumai": "run.js"
12
12
  },
13
13
  "dependencies": {
14
- "@checksum-ai/runtime": "4.4.1",
15
- "ts-node": "^10.9.1"
14
+ "@checksum-ai/runtime": "4.4.2"
16
15
  },
17
16
  "repository": {
18
17
  "type": "git",
package/run.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env ts-node
1
+ #!/usr/bin/env node
2
2
  process.noDeprecation = true;
3
3
  process.env.NODE_NO_WARNINGS = "1";
4
4
  import cli from "@checksum-ai/runtime/cli.js";
package/tsconfig.json DELETED
@@ -1,23 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ESNext",
4
- "useDefineForClassFields": true,
5
- "skipLibCheck": true,
6
- "esModuleInterop": true,
7
- "isolatedModules": true,
8
- "noEmit": true,
9
- "types": ["node"],
10
- "strict": true,
11
- "useUnknownInCatchVariables": true,
12
- "exactOptionalPropertyTypes": true,
13
- "noUncheckedIndexedAccess": true,
14
- "noUnusedLocals": true,
15
- "noUnusedParameters": true,
16
- "noImplicitReturns": true,
17
- "noFallthroughCasesInSwitch": true,
18
- "noImplicitOverride": true,
19
- "noPropertyAccessFromIndexSignature": true,
20
- "allowUnusedLabels": false,
21
- "allowUnreachableCode": false
22
- }
23
- }