@askalf/dario 1.0.0 → 1.0.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/README.md +6 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -16,8 +16,8 @@
16
16
  ---
17
17
 
18
18
  ```bash
19
- npx dario login # authenticate with Claude
20
- npx dario proxy # start local API on :3456
19
+ npx @askalf/dario login # authenticate with Claude
20
+ npx @askalf/dario proxy # start local API on :3456
21
21
 
22
22
  # now use it from anywhere
23
23
  export ANTHROPIC_BASE_URL=http://localhost:3456
@@ -39,14 +39,14 @@ You pay $100-200/mo for Claude Max or Pro. But that subscription only works on c
39
39
  ### Install
40
40
 
41
41
  ```bash
42
- npm install -g dario
42
+ npm install -g @askalf/dario
43
43
  ```
44
44
 
45
45
  Or use npx (no install needed):
46
46
 
47
47
  ```bash
48
- npx dario login
49
- npx dario proxy
48
+ npx @askalf/dario login
49
+ npx @askalf/dario proxy
50
50
  ```
51
51
 
52
52
  ### Login
@@ -281,7 +281,7 @@ Named after [Dario Amodei](https://en.wikipedia.org/wiki/Dario_Amodei), CEO of A
281
281
  Use dario as a library in your own Node.js app:
282
282
 
283
283
  ```typescript
284
- import { startProxy, getAccessToken, getStatus } from "dario";
284
+ import { startProxy, getAccessToken, getStatus } from "@askalf/dario";
285
285
 
286
286
  // Start the proxy programmatically
287
287
  await startProxy({ port: 3456, verbose: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@askalf/dario",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Use your Claude subscription as an API. Two commands, no API key. OAuth bridge for Claude Max/Pro.",
5
5
  "type": "module",
6
6
  "bin": {