zframes 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/dist/index.js +8 -11
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -581,7 +581,7 @@ function skeleton(title, author) {
581
581
  grid: { columns: 12, rowHeight: 96, gap: 12 },
582
582
  background: {
583
583
  type: "unicorn",
584
- projectId: "K42KSY4FXeXhjVOj9RgT",
584
+ projectId: "YrTzGatwjK7EoFpCSfgZ",
585
585
  opacity: 0.05
586
586
  },
587
587
  theme: { accentHue: 242, accentSat: 90 },
@@ -637,9 +637,9 @@ function init(args) {
637
637
  const hint = parsed.target.toLowerCase().endsWith(".json") ? parsed.target : join(parsed.target, "dashboard.json");
638
638
  console.log(`\u2713 wrote a bare dashboard to ${dest}`);
639
639
  console.log(" next: read the catalogue, add frames, then lint + serve:");
640
- console.log(" npx zframes@latest catalogue");
641
- console.log(` npx zframes@latest lint ${hint}`);
642
- console.log(` npx zframes@latest serve ${hint}`);
640
+ console.log(" npx --yes zframes@latest catalogue");
641
+ console.log(` npx --yes zframes@latest lint ${hint}`);
642
+ console.log(` npx --yes zframes@latest serve ${hint}`);
643
643
  return 0;
644
644
  }
645
645
 
@@ -1145,13 +1145,10 @@ function serve(args) {
1145
1145
  });
1146
1146
  server.listen(parsed.port, "127.0.0.1", () => {
1147
1147
  const url = `http://127.0.0.1:${parsed.port}`;
1148
- console.log(`\u25B8 zframes serving ${parsed.file} on ${url}`);
1149
- console.log(" live editing on \u2014 drag, resize, then Save writes back.");
1150
- if (!parsed.contact) {
1151
- console.log(
1152
- " tip: pass --contact <email> so SEC/official-data requests identify you (fair-access)."
1153
- );
1154
- }
1148
+ console.log(`\u26A1 zframes is live at ${url}`);
1149
+ console.log(
1150
+ ` serving ${parsed.file} \u2014 live editing on; drag, resize, then Save writes back.`
1151
+ );
1155
1152
  });
1156
1153
  });
1157
1154
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zframes",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "zframes CLI — serve a dashboard.json as a live, editable market terminal (serve), print the frame catalogue for generating agents (catalogue), and validate a dashboard.json (lint).",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Zentry",
@@ -41,9 +41,9 @@
41
41
  "typescript": "^5.8.0",
42
42
  "@zframes/core": "0.0.0",
43
43
  "@zframes/frames": "0.0.0",
44
- "@zframes/provider-alternativeme": "0.0.0",
45
44
  "@zframes/provider-coingecko": "0.0.0",
46
45
  "@zframes/provider-defillama": "0.0.0",
46
+ "@zframes/provider-alternativeme": "0.0.0",
47
47
  "@zframes/provider-hyperliquid": "0.0.0"
48
48
  },
49
49
  "scripts": {