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 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
- npm install -g litmus-ai
64
+ bun add -g litmus-ai
63
65
  ```
64
66
 
65
67
  ### Environment Setup
package/dist/cli.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env bun
2
2
  // @bun
3
3
  var __create = Object.create;
4
4
  var __getProtoOf = Object.getPrototypeOf;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "litmus-ai",
3
- "version": "1.0.2",
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": {