stereoframe 0.2.3 → 0.2.4

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.
Files changed (2) hide show
  1. package/dist/cli.js +2 -0
  2. package/package.json +2 -2
package/dist/cli.js CHANGED
@@ -241,6 +241,8 @@ function lintHtml(html, opts) {
241
241
  const value = readAttr(tag.attrs, attr);
242
242
  if (!value)
243
243
  continue;
244
+ if (attr === "environment" && (value === "room" || value === "studio"))
245
+ continue;
244
246
  if (/^https?:\/\//i.test(value)) {
245
247
  findings.push({
246
248
  rule: "remote_asset",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stereoframe",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Declarative, deterministic 3D video on three.js — scaffold, lint, validate, and render compositions built for AI agents.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -25,7 +25,7 @@
25
25
  "test": "bun test"
26
26
  },
27
27
  "dependencies": {
28
- "stereoframe-runtime": "0.2.3",
28
+ "stereoframe-runtime": "0.2.4",
29
29
  "puppeteer": "^24.0.0"
30
30
  },
31
31
  "devDependencies": {