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 CHANGED
@@ -5,7 +5,7 @@ Thanks for your interest in contributing to Ray.
5
5
  ## Development Setup
6
6
 
7
7
  ```bash
8
- git clone https://github.com/clarkdinnison/ray-finance.git
8
+ git clone https://github.com/cdinnison/ray-finance.git
9
9
  cd ray-finance
10
10
  npm install
11
11
  npm run build
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/clarkdinnison/ray-finance.git
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.0",
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/clarkdinnison/ray-finance.git"
10
+ "url": "https://github.com/cdinnison/ray-finance.git"
11
11
  },
12
- "homepage": "https://github.com/clarkdinnison/ray-finance",
12
+ "homepage": "https://rayfinance.app",
13
13
  "bugs": {
14
- "url": "https://github.com/clarkdinnison/ray-finance/issues"
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
- {copied && <span className="ml-2 text-xs text-stone-400">✓ copied</span>}
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
  }
@@ -228,7 +228,7 @@ function Terminal() {
228
228
  function TrustBlock() {
229
229
  return (
230
230
  <section className="py-16">
231
- <div className="mx-auto flex max-w-3xl flex-wrap items-center justify-center gap-x-10 gap-y-4 px-6">
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
- <code className="rounded-full border border-stone-800 bg-stone-900 px-6 py-3.5 font-mono text-sm">
690
- <span className="text-stone-500">$</span>{" "}
691
- <span className="text-lime-400">npx ray-finance</span>
692
- </code>
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"