@immediately-run/sdk 0.48.0 → 0.50.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@immediately-run/sdk",
3
- "version": "0.48.0",
3
+ "version": "0.50.0",
4
4
  "description": "Runtime SDK for code executing inside an immediately.run sandbox.",
5
5
  "license": "MIT",
6
6
  "repository": "github:immediately-run/immediately-run-sdk",
@@ -36,7 +36,7 @@
36
36
  "protocol:check": "node scripts/check-protocol-snapshot.mjs",
37
37
  "verify:codegen-parity": "node scripts/codegen-prototype/verify-drift.mjs --self-test && node scripts/codegen-prototype/verify-drift.mjs && node scripts/codegen-prototype/verify.streams.mjs --self-test && node scripts/codegen-prototype/verify.streams.mjs",
38
38
  "api:update": "node scripts/check-api-stability.mjs --update",
39
- "verify": "npm run format:check && npm run check:circular && npm run build && npm test && npm run test:safe-content && npm run test:metadata-e2e && npm run api:check && npm run compat:selftest && npm run compat:previous && npm run protocol:check && npm run protocol:selftest && npm run check:selfhost:selftest && npm run check:selfhost && npm run verify:codegen-parity",
39
+ "verify": "npm run format:check && npm run check:circular && npm run check:bundler:selftest && npm run check:bundler && npm run build && npm test && npm run test:safe-content && npm run test:metadata-e2e && npm run api:check && npm run compat:selftest && npm run compat:previous && npm run protocol:check && npm run protocol:selftest && npm run check:ambient:selftest && npm run check:ambient && npm run check:selfhost:selftest && npm run check:selfhost && npm run verify:codegen-parity",
40
40
  "docs": "typedoc --json docs/api.json && node scripts/gen-llms.mjs",
41
41
  "prepublishOnly": "npm run check:circular && npm run build && npm run api:check",
42
42
  "test:safe-content": "node scripts/build-safecontent-e2e.mjs && node --test test/safeContent.e2e.mjs",
@@ -46,7 +46,11 @@
46
46
  "compat:selftest": "node scripts/check-previous-sdk-compat.mjs --self-test",
47
47
  "check:selfhost": "node scripts/build-selfhost.mjs .selfhost-check && node scripts/check-selfhost-resolvable.mjs --dir .selfhost-check",
48
48
  "check:selfhost:selftest": "node scripts/check-selfhost-resolvable.mjs --self-test",
49
- "prepare": "git config core.hooksPath .githooks || true"
49
+ "prepare": "git config core.hooksPath .githooks || true",
50
+ "check:bundler": "node scripts/check-bundler-reads.mjs",
51
+ "check:bundler:selftest": "node scripts/check-bundler-reads.mjs --self-test",
52
+ "check:ambient": "node scripts/check-ambient-types.mjs",
53
+ "check:ambient:selftest": "node scripts/check-ambient-types.mjs --self-test"
50
54
  },
51
55
  "peerDependencies": {
52
56
  "react": "^19.0.0",