ray-finance 0.2.0 → 0.2.2
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/CONTRIBUTING.md +1 -1
- package/README.md +1 -1
- package/package.json +4 -4
- package/site/src/app/copy-command.tsx +3 -2
- package/site/src/app/page.tsx +5 -5
package/CONTRIBUTING.md
CHANGED
package/README.md
CHANGED
|
@@ -156,7 +156,7 @@ RAY_API_KEY= # Ray API key (managed mode, replaces the above)
|
|
|
156
156
|
## Development
|
|
157
157
|
|
|
158
158
|
```bash
|
|
159
|
-
git clone https://github.com/
|
|
159
|
+
git clone https://github.com/cdinnison/ray-finance.git
|
|
160
160
|
cd ray-finance
|
|
161
161
|
npm install
|
|
162
162
|
npm run build
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ray-finance",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Local-first CLI that turns your bank data into a personal AI financial advisor",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Clark Dinnison",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "https://github.com/
|
|
10
|
+
"url": "https://github.com/cdinnison/ray-finance.git"
|
|
11
11
|
},
|
|
12
|
-
"homepage": "https://
|
|
12
|
+
"homepage": "https://rayfinance.app",
|
|
13
13
|
"bugs": {
|
|
14
|
-
"url": "https://github.com/
|
|
14
|
+
"url": "https://github.com/cdinnison/ray-finance/issues"
|
|
15
15
|
},
|
|
16
16
|
"keywords": [
|
|
17
17
|
"finance",
|
|
@@ -20,11 +20,12 @@ export function CopyCommand({
|
|
|
20
20
|
setTimeout(() => setCopied(false), 2000);
|
|
21
21
|
}}
|
|
22
22
|
className={`group relative cursor-pointer ${className}`}
|
|
23
|
-
title="Click to copy"
|
|
24
23
|
>
|
|
25
24
|
<span className="text-stone-400 font-mono">$</span>{" "}
|
|
26
25
|
<span className="font-mono">{command}</span>
|
|
27
|
-
|
|
26
|
+
<span className="ml-0 max-w-0 overflow-hidden whitespace-nowrap text-xs text-stone-400 transition-all duration-300 ease-in-out group-hover:ml-2 group-hover:max-w-[6rem]">
|
|
27
|
+
{copied ? "✓ copied" : "click to copy"}
|
|
28
|
+
</span>
|
|
28
29
|
</button>
|
|
29
30
|
);
|
|
30
31
|
}
|
package/site/src/app/page.tsx
CHANGED
|
@@ -228,7 +228,7 @@ function Terminal() {
|
|
|
228
228
|
function TrustBlock() {
|
|
229
229
|
return (
|
|
230
230
|
<section className="py-16">
|
|
231
|
-
<div className="mx-auto
|
|
231
|
+
<div className="mx-auto grid max-w-3xl grid-cols-2 gap-y-6 px-6 sm:flex sm:flex-wrap sm:items-center sm:justify-center sm:gap-x-10 sm:gap-y-4">
|
|
232
232
|
<Metric value="Open Source" label="MIT License" />
|
|
233
233
|
<span className="hidden text-stone-200 sm:inline">|</span>
|
|
234
234
|
<Metric value="AES-256" label="Encrypted database" />
|
|
@@ -686,10 +686,10 @@ function CTA() {
|
|
|
686
686
|
Use a Ray API key for instant setup, or bring your own keys.
|
|
687
687
|
</p>
|
|
688
688
|
<div className="mt-10 flex flex-col items-center gap-6">
|
|
689
|
-
<
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
689
|
+
<CopyCommand
|
|
690
|
+
command="npx ray-finance"
|
|
691
|
+
className="rounded-full border border-stone-800 bg-stone-900 px-6 py-3.5 text-sm text-lime-400 [&>span:first-child]:text-stone-500"
|
|
692
|
+
/>
|
|
693
693
|
<div className="flex items-center gap-6">
|
|
694
694
|
<a
|
|
695
695
|
href="https://github.com/cdinnison/ray-finance"
|