nairon-bench 0.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.
- package/dist/index.js +9845 -0
- package/package.json +50 -0
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "nairon-bench",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "AI workflow benchmarking CLI",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"nairon-bench": "./dist/index.js",
|
|
8
|
+
"nb": "./dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/ObaidUr-Rahmaan/nairon-bench"
|
|
16
|
+
},
|
|
17
|
+
"keywords": ["ai", "benchmark", "cli", "workflow"],
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"scripts": {
|
|
20
|
+
"dev": "bun run src/index.ts",
|
|
21
|
+
"build": "bun build --outdir=dist --target=node src/index.ts && sed -i.bak '1s|#!/usr/bin/env bun|#!/usr/bin/env node|' dist/index.js && rm -f dist/index.js.bak",
|
|
22
|
+
"build:binary": "bun build --compile --outfile=dist/nb src/index.ts",
|
|
23
|
+
"build:all": "bun run build:macos-arm64 && bun run build:macos-x64 && bun run build:linux-x64 && bun run build:linux-arm64 && bun run build:windows-x64",
|
|
24
|
+
"build:macos-arm64": "bun build --compile --target=bun-darwin-arm64 --outfile=dist/nb-darwin-arm64 src/index.ts",
|
|
25
|
+
"build:macos-x64": "bun build --compile --target=bun-darwin-x64 --outfile=dist/nb-darwin-x64 src/index.ts",
|
|
26
|
+
"build:linux-x64": "bun build --compile --target=bun-linux-x64 --outfile=dist/nb-linux-x64 src/index.ts",
|
|
27
|
+
"build:linux-arm64": "bun build --compile --target=bun-linux-arm64 --outfile=dist/nb-linux-arm64 src/index.ts",
|
|
28
|
+
"build:windows-x64": "bun build --compile --target=bun-windows-x64 --outfile=dist/nb-windows-x64.exe src/index.ts",
|
|
29
|
+
"typecheck": "tsc --noEmit",
|
|
30
|
+
"test": "bun test",
|
|
31
|
+
"test:e2e": "bun test --test-name-pattern e2e",
|
|
32
|
+
"clean": "rm -rf dist",
|
|
33
|
+
"prepublishOnly": "bun run build"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@nairon-bench/shared": "workspace:*",
|
|
37
|
+
"@opentui/core": "^0.1.0",
|
|
38
|
+
"@opentui/react": "^0.1.0",
|
|
39
|
+
"citty": "^0.1.6",
|
|
40
|
+
"convex": "^1.21.0",
|
|
41
|
+
"react": "^19.0.0",
|
|
42
|
+
"simple-git": "^3.27.0",
|
|
43
|
+
"consola": "^3.4.0"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@types/bun": "latest",
|
|
47
|
+
"typescript": "^5.8.0",
|
|
48
|
+
"tuistory": "^1.0.0"
|
|
49
|
+
}
|
|
50
|
+
}
|