cerebras-cli 1.0.3 → 1.0.5

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 +3 -5
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -1,15 +1,13 @@
1
1
  # js
2
2
 
3
- To install dependencies:
3
+ To install:
4
4
 
5
5
  ```bash
6
- bun install
6
+ npm install cerebras-cli
7
7
  ```
8
8
 
9
9
  To run:
10
10
 
11
11
  ```bash
12
- bun run index.ts
12
+ cerebras-cli
13
13
  ```
14
-
15
- This project was created using `bun init` in bun v1.2.12. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "cerebras-cli",
4
- "version": "1.0.3",
4
+ "version": "1.0.5",
5
5
  "description": "AI-powered coding assistant CLI with Cerebras fast inference",
6
6
  "author": "Kevin Taylor",
7
7
  "license": "MIT",
@@ -38,10 +38,10 @@
38
38
  },
39
39
  "homepage": "https://github.com/kevint-cerebras/cerebras-code-cli#readme",
40
40
  "optionalDependencies": {
41
- "cerebras-cli-darwin-arm64": "1.0.0",
42
- "cerebras-cli-darwin-x64": "1.0.0",
43
- "cerebras-cli-linux-arm64": "1.0.0",
44
- "cerebras-cli-linux-x64": "1.0.0",
45
- "cerebras-cli-windows-x64": "1.0.0"
41
+ "cerebras-cli-darwin-arm64": "1.0.5",
42
+ "cerebras-cli-darwin-x64": "1.0.5",
43
+ "cerebras-cli-linux-arm64": "1.0.5",
44
+ "cerebras-cli-linux-x64": "1.0.5",
45
+ "cerebras-cli-windows-x64": "1.0.5"
46
46
  }
47
47
  }