checksumai 4.1.1 → 4.2.0

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 ADDED
@@ -0,0 +1,15 @@
1
+ # Changelog
2
+
3
+ ## [4.2.0](https://github.com/checksum-ai/checksum-ai-monorepo/compare/runtime-wrapper-v4.1.1...runtime-wrapper-v4.2.0) (2026-06-01)
4
+
5
+
6
+ ### Features
7
+
8
+ * **runtime,runtime-wrapper:** Wire release-please publishing, drop submodules ([#2485](https://github.com/checksum-ai/checksum-ai-monorepo/issues/2485)) ([ac3fc34](https://github.com/checksum-ai/checksum-ai-monorepo/commit/ac3fc342712f145ea7308b782ef85b74250aa555))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @checksum-ai/runtime bumped from 4.1.1 to 4.2.0
package/README.md CHANGED
@@ -1,2 +1,3 @@
1
- # runtime-base
2
- Checksum.ai runtime base repository
1
+ # checksumai
2
+
3
+ Thin wrapper that loads `@checksum-ai/runtime/cli.js`. Installed via `npm i -D checksumai`; invoke with `npx checksumai`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "checksumai",
3
- "version": "4.1.1",
3
+ "version": "4.2.0",
4
4
  "description": "Checksum.ai runtime base package",
5
5
  "main": "./run.js",
6
6
  "type": "module",
@@ -11,17 +11,18 @@
11
11
  "checksumai": "run.js"
12
12
  },
13
13
  "dependencies": {
14
- "@checksum-ai/runtime": "4.1.1",
14
+ "@checksum-ai/runtime": "4.2.0",
15
15
  "ts-node": "^10.9.1"
16
16
  },
17
17
  "repository": {
18
18
  "type": "git",
19
- "url": "git+https://github.com/checksum-ai/runtime-base.git"
19
+ "url": "git+https://github.com/checksum-ai/checksum-ai-monorepo.git",
20
+ "directory": "packages/runtime-wrapper"
20
21
  },
21
22
  "author": "Checksum.ai",
22
23
  "license": "ISC",
23
24
  "bugs": {
24
- "url": "https://github.com/checksum-ai/runtime-base/issues"
25
+ "url": "https://github.com/checksum-ai/checksum-ai-monorepo/issues"
25
26
  },
26
- "homepage": "https://github.com/checksum-ai/runtime-base#readme"
27
+ "homepage": "https://github.com/checksum-ai/checksum-ai-monorepo/tree/main/packages/runtime-wrapper#readme"
27
28
  }