hyperframes 0.1.12 → 0.1.14
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/README.md +5 -1
- package/dist/cli.js +17587 -16489
- package/dist/hyperframe-runtime.js +8 -4
- package/dist/hyperframe.manifest.json +1 -1
- package/dist/hyperframe.runtime.iife.js +8 -4
- package/dist/skills/hyperframes-captions/SKILL.md +194 -28
- package/dist/skills/hyperframes-compose/SKILL.md +1 -0
- package/dist/skills/hyperframes-compose/house-style.md +2 -2
- package/dist/studio/assets/index-CLmYRLY-.css +1 -0
- package/dist/studio/assets/index-CRvFpc0E.js +84 -0
- package/dist/studio/index.html +2 -2
- package/dist/templates/_shared/CLAUDE.md +14 -2
- package/dist/templates/blank/compositions/captions.html +3 -0
- package/dist/templates/blank/index.html +1 -1
- package/package.json +4 -2
- package/dist/studio/assets/index-BEwJNmPo.js +0 -92
- package/dist/studio/assets/index-BnvciBdD.css +0 -1
package/README.md
CHANGED
|
@@ -51,9 +51,13 @@ npx hyperframes render ./my-composition.html -o output.mp4
|
|
|
51
51
|
Validate your Hyperframes HTML:
|
|
52
52
|
|
|
53
53
|
```bash
|
|
54
|
-
npx hyperframes lint ./my-composition
|
|
54
|
+
npx hyperframes lint ./my-composition
|
|
55
|
+
npx hyperframes lint ./my-composition --json # JSON output for CI/tooling
|
|
56
|
+
npx hyperframes lint ./my-composition --verbose # Include info-level findings
|
|
55
57
|
```
|
|
56
58
|
|
|
59
|
+
By default only errors and warnings are shown. Use `--verbose` to also display informational findings (e.g., external script dependency notices). Use `--json` for machine-readable output with `errorCount`, `warningCount`, `infoCount`, and a `findings` array.
|
|
60
|
+
|
|
57
61
|
### `compositions`
|
|
58
62
|
|
|
59
63
|
List compositions found in the current project:
|