@hasna/evals 0.1.0 → 0.1.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hasna/evals",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Open source AI evaluation framework — LLM-as-judge + assertion-based evals for any AI app. CLI + MCP server.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -18,12 +18,14 @@
18
18
  },
19
19
  "files": [
20
20
  "dist",
21
+ "dashboard/dist",
21
22
  "datasets/examples",
22
23
  "LICENSE",
23
24
  "README.md"
24
25
  ],
25
26
  "scripts": {
26
- "build": "bun build src/cli/index.ts --outdir dist/cli --target bun --external ink --external react --external chalk --external @modelcontextprotocol/sdk && bun build src/mcp/index.ts --outdir dist/mcp --target bun --external @modelcontextprotocol/sdk && bun build src/server/index.ts --outdir dist/server --target bun && bun build src/index.ts --outdir dist --target bun && tsc --emitDeclarationOnly --outDir dist",
27
+ "build": "cd dashboard && bun run build && cd .. && bun build src/cli/index.ts --outdir dist/cli --target bun --external ink --external react --external chalk --external @modelcontextprotocol/sdk && bun build src/mcp/index.ts --outdir dist/mcp --target bun --external @modelcontextprotocol/sdk && bun build src/server/index.ts --outdir dist/server --target bun && bun build src/index.ts --outdir dist --target bun && tsc --emitDeclarationOnly --outDir dist",
28
+ "build:dashboard": "cd dashboard && bun run build",
27
29
  "typecheck": "tsc --noEmit",
28
30
  "test": "bun test",
29
31
  "dev:cli": "bun run src/cli/index.ts",
@@ -63,6 +65,7 @@
63
65
  "license": "Apache-2.0",
64
66
  "dependencies": {
65
67
  "@anthropic-ai/sdk": "^0.39.0",
68
+ "@hasna/cloud": "^0.1.28",
66
69
  "@modelcontextprotocol/sdk": "^1.12.1",
67
70
  "ajv": "^8.18.0",
68
71
  "chalk": "^5.4.1",