checksumai 4.3.2 → 4.4.1-beta.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/CHANGELOG.md CHANGED
@@ -1,5 +1,38 @@
1
1
  # Changelog
2
2
 
3
+ ## [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
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **runtime-wrapper:** Synchronize runtime versions
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @checksum-ai/runtime bumped from 4.4.0 to 4.4.1
16
+
17
+ ## [4.4.0](https://github.com/checksum-ai/checksum-ai-monorepo/compare/runtime-wrapper-v4.3.2...runtime-wrapper-v4.4.0) (2026-06-16)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **runtime-wrapper:** Bump @checksum-ai/runtime pin to 4.3.2 ([#2703](https://github.com/checksum-ai/checksum-ai-monorepo/issues/2703)) ([3da2ef6](https://github.com/checksum-ai/checksum-ai-monorepo/commit/3da2ef6b494b768218bb545dd13734031c4b87be))
23
+
24
+
25
+ ### Documentation
26
+
27
+ * **runtime-wrapper:** Note linked-versions release with runtime [pkg:runtime-wrapper] ([#3102](https://github.com/checksum-ai/checksum-ai-monorepo/issues/3102)) ([1ff9378](https://github.com/checksum-ai/checksum-ai-monorepo/commit/1ff937847d610a49cc71dbee0b271ac748a0b275))
28
+
29
+
30
+ ### Dependencies
31
+
32
+ * The following workspace dependencies were updated
33
+ * dependencies
34
+ * @checksum-ai/runtime bumped from 4.3.2 to 4.4.0
35
+
3
36
  ## [4.3.2](https://github.com/checksum-ai/checksum-ai-monorepo/compare/runtime-wrapper-v4.3.1...runtime-wrapper-v4.3.2) (2026-06-03)
4
37
 
5
38
 
package/README.md CHANGED
@@ -1,3 +1,5 @@
1
1
  # checksumai
2
2
 
3
3
  Thin wrapper that loads `@checksum-ai/runtime/cli.js`. Installed via `npm i -D checksumai`; invoke with `npx checksumai`.
4
+
5
+ This package is versioned in lockstep with `@checksum-ai/runtime` (release-please linked-versions group), so its version always matches the runtime it loads.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "checksumai",
3
- "version": "4.3.2",
3
+ "version": "4.4.1-beta.1",
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.3.2",
15
- "ts-node": "^10.9.1"
14
+ "@checksum-ai/runtime": "4.4.1-beta.1"
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,12 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ESNext",
4
- "useDefineForClassFields": true,
5
- "skipLibCheck": true,
6
- "esModuleInterop": true,
7
- "strict": true,
8
- "isolatedModules": true,
9
- "noEmit": true,
10
- "types": ["node"]
11
- }
12
- }