litmus-ai 1.0.2 → 1.0.4
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/README.md +3 -1
- package/dist/cli.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -58,8 +58,10 @@ Litmus supports multi-modal prompts with image attachments. You can attach image
|
|
|
58
58
|
|
|
59
59
|
## Installation
|
|
60
60
|
|
|
61
|
+
Requires [Bun](https://bun.sh) v1.0.0 or higher.
|
|
62
|
+
|
|
61
63
|
```bash
|
|
62
|
-
|
|
64
|
+
bun add -g litmus-ai
|
|
63
65
|
```
|
|
64
66
|
|
|
65
67
|
### Environment Setup
|
package/dist/cli.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "litmus-ai",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Multi-model LLM eval CLI tool",
|
|
5
5
|
"module": "src/index.tsx",
|
|
6
6
|
"type": "module",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
],
|
|
13
13
|
"scripts": {
|
|
14
14
|
"dev": "bun run --watch src/index.tsx",
|
|
15
|
-
"build": "bun build src/index.tsx --outdir dist --target bun --entry-naming cli.js",
|
|
15
|
+
"build": "bun build src/index.tsx --outdir dist --target bun --entry-naming cli.js && sed -i '' '1s|node|bun|' dist/cli.js",
|
|
16
16
|
"prepublishOnly": "bun run build"
|
|
17
17
|
},
|
|
18
18
|
"engines": {
|