ai-speedometer 2.0.1 → 2.0.3
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 +7 -1
- package/dist/ai-speedometer +1685 -54599
- package/package.json +6 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-speedometer",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3",
|
|
4
4
|
"description": "A comprehensive CLI tool for benchmarking AI models across multiple providers with parallel execution and professional metrics",
|
|
5
5
|
"bin": {
|
|
6
6
|
"ai-speedometer": "dist/ai-speedometer",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"test:watch": "bun test --watch",
|
|
17
17
|
"test:update": "bun test --update-snapshots",
|
|
18
18
|
"typecheck": "bun tsc --noEmit",
|
|
19
|
-
"build": "bun build src/index.ts --outdir dist --target bun && printf '#!/usr/bin/env bun\\n' | cat - dist/index.js > dist/ai-speedometer && chmod +x dist/ai-speedometer && rm dist/index.js",
|
|
19
|
+
"build": "bun build src/index.ts --outdir dist --target bun --external '@opentui/core' --external '@opentui/react' && printf '#!/usr/bin/env bun\\n' | cat - dist/index.js > dist/ai-speedometer && chmod +x dist/ai-speedometer && rm dist/index.js",
|
|
20
20
|
"prepublishOnly": "bun run build"
|
|
21
21
|
},
|
|
22
22
|
"keywords": [
|
|
@@ -50,6 +50,10 @@
|
|
|
50
50
|
"README.md",
|
|
51
51
|
"ai-benchmark-config.json.template"
|
|
52
52
|
],
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@opentui/core": "0.1.79",
|
|
55
|
+
"@opentui/react": "0.1.79"
|
|
56
|
+
},
|
|
53
57
|
"devDependencies": {
|
|
54
58
|
"jsonc-parser": "^3.3.1"
|
|
55
59
|
}
|