zframes 0.1.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/LICENSE +201 -0
- package/NOTICE +31 -0
- package/README.md +55 -0
- package/dist/index.js +1707 -0
- package/package.json +53 -0
- package/runtime/apple-touch-icon.png +0 -0
- package/runtime/assets/index-6CnH3oHt.js +719 -0
- package/runtime/assets/index-A5M9erCx.js +35727 -0
- package/runtime/assets/index-CgpsbUVX.css +1 -0
- package/runtime/favicon-16.png +0 -0
- package/runtime/favicon-32.png +0 -0
- package/runtime/favicon.svg +12 -0
- package/runtime/index.html +17 -0
- package/runtime/unicornStudio.legacy.umd.mjs +5745 -0
- package/runtime/unicornStudio.umd.mjs +6721 -0
- package/runtime/widget-icons/allocation.png +0 -0
- package/runtime/widget-icons/bitcoin-dominance.png +0 -0
- package/runtime/widget-icons/clock.png +0 -0
- package/runtime/widget-icons/daily-analysis.png +0 -0
- package/runtime/widget-icons/dino-game.png +0 -0
- package/runtime/widget-icons/fear-greed.png +0 -0
- package/runtime/widget-icons/funding-heatmap.png +0 -0
- package/runtime/widget-icons/funding-rate-chart.png +0 -0
- package/runtime/widget-icons/heading.png +0 -0
- package/runtime/widget-icons/image.png +0 -0
- package/runtime/widget-icons/inflation-pulse.png +0 -0
- package/runtime/widget-icons/market-hours.png +0 -0
- package/runtime/widget-icons/note.png +0 -0
- package/runtime/widget-icons/price-chart.png +0 -0
- package/runtime/widget-icons/price-compare.png +0 -0
- package/runtime/widget-icons/price-liveline.png +0 -0
- package/runtime/widget-icons/price-ticker.png +0 -0
- package/runtime/widget-icons/rates-board.png +0 -0
- package/runtime/widget-icons/top-movers.png +0 -0
- package/runtime/widget-icons/tvl-treemap.png +0 -0
- package/runtime/widget-icons/widget-icons-master.png +0 -0
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "zframes",
|
|
3
|
+
"version": "0.1.0",
|
|
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
|
+
"license": "Apache-2.0",
|
|
6
|
+
"author": "Zentry",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/zentryhq/zframes.git",
|
|
10
|
+
"directory": "packages/cli"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/zentryhq/zframes#readme",
|
|
13
|
+
"keywords": [
|
|
14
|
+
"zframes",
|
|
15
|
+
"dashboard",
|
|
16
|
+
"market",
|
|
17
|
+
"trading",
|
|
18
|
+
"cli",
|
|
19
|
+
"ai",
|
|
20
|
+
"agent",
|
|
21
|
+
"hyperliquid"
|
|
22
|
+
],
|
|
23
|
+
"type": "module",
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=18"
|
|
26
|
+
},
|
|
27
|
+
"bin": {
|
|
28
|
+
"zframes": "dist/index.js"
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"dist",
|
|
32
|
+
"runtime",
|
|
33
|
+
"NOTICE"
|
|
34
|
+
],
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"zod": "^4.1.0"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@types/node": "^20.14.0",
|
|
40
|
+
"tsup": "^8.3.0",
|
|
41
|
+
"typescript": "^5.8.0",
|
|
42
|
+
"@zframes/core": "0.0.0",
|
|
43
|
+
"@zframes/frames": "0.0.0",
|
|
44
|
+
"@zframes/provider-alternativeme": "0.0.0",
|
|
45
|
+
"@zframes/provider-coingecko": "0.0.0",
|
|
46
|
+
"@zframes/provider-defillama": "0.0.0",
|
|
47
|
+
"@zframes/provider-hyperliquid": "0.0.0"
|
|
48
|
+
},
|
|
49
|
+
"scripts": {
|
|
50
|
+
"build": "node scripts/build-runtime.mjs && tsup",
|
|
51
|
+
"typecheck": "tsc --noEmit"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
Binary file
|