-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 4.11 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 4.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@castorini/piika",
"version": "0.3.0",
"description": "A reusable, reproducible pi search-agent workspace",
"keywords": [
"agent",
"benchmark",
"bm25",
"pi",
"search"
],
"homepage": "https://github.com/castorini/piika#readme",
"bugs": {
"url": "https://github.com/castorini/piika/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/castorini/piika.git"
},
"bin": {
"piika": "./bin/piika.js"
},
"files": [
".agents",
"bin",
"src",
"scripts",
"jvm",
"docs",
"CHANGELOG.md"
],
"type": "module",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"prebuilt": "npx tsx src/prebuilt/entry.ts",
"setup:benchmark": "npx tsx src/orchestration/setup_benchmark_entry.ts",
"setup:browsecomp-plus": "npx tsx src/orchestration/setup_benchmark_entry.ts --benchmark browsecomp-plus --step setup",
"setup:msmarco-v1-passage": "npx tsx src/orchestration/setup_benchmark_entry.ts --benchmark msmarco-v1-passage --step setup",
"setup:ground-truth:browsecomp-plus": "npx tsx src/orchestration/setup_benchmark_entry.ts --benchmark browsecomp-plus --step ground-truth",
"sample:browsecomp-plus:slices": "npx tsx src/orchestration/setup_benchmark_entry.ts --benchmark browsecomp-plus --step query-slices",
"sample:benchmark:query-slices": "npx tsx src/orchestration/setup_benchmark_entry.ts --step query-slices",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"lint": "oxlint --type-aware --tsconfig tsconfig.json .",
"typecheck": "tsc --noEmit",
"test": "npx tsx --test tests/*.test.ts tests/**/*.test.ts",
"check": "npm run format:check && npm run lint && npm run typecheck",
"prek": "bash scripts/check_no_sensitive_tracking.sh --staged",
"run:benchmark:query-set": "npx tsx src/orchestration/query_set.ts",
"run:benchmark:query-set:shared-bm25": "npx tsx src/orchestration/query_set_shared_bm25.ts",
"run:benchmark:query-set:sharded-shared-bm25": "npx tsx src/orchestration/query_set_sharded_shared_bm25.ts",
"run:benchmark:query-set:shared": "npm run run:benchmark:query-set:shared-bm25 --",
"run:benchmark:query-set:sharded": "npm run run:benchmark:query-set:sharded-shared-bm25 --",
"run:benchmark:shared": "npx tsx src/legacy/launch_shared_bm25_benchmark_entry.ts",
"run:browsecomp-plus:slice": "npx tsx src/legacy/browsecomp_compat_entry.ts --mode run",
"run:browsecomp-plus:slice:shared": "npx tsx src/legacy/browsecomp_compat_entry.ts --mode shared",
"run:browsecomp-plus:slice:sharded": "npx tsx src/legacy/browsecomp_compat_entry.ts --mode sharded",
"run:q9": "npx tsx src/legacy/browsecomp_compat_entry.ts --mode run --slice q9",
"run:q9:shared": "npx tsx src/legacy/browsecomp_compat_entry.ts --mode shared --slice q9",
"summarize:run": "npx tsx src/wrappers/summarize_run_entry.ts",
"evaluate:run": "npx tsx src/wrappers/evaluate_run_with_pi_entry.ts",
"evaluate:retrieval": "npx tsx src/wrappers/evaluate_retrieval_entry.ts",
"report:run": "npx tsx src/wrappers/report_run_markdown_entry.ts",
"adapt:search-jsonl-run": "npx tsx src/adapters/import_search_jsonl_run.ts",
"adapt:multi-answer-ground-truth": "npx tsx src/adapters/prepare_multi_answer_ground_truth.ts",
"install:benchmark-manifest": "npx tsx src/benchmarks/install_manifest_entry.ts",
"tune:bm25": "npx tsx src/orchestration/tune_bm25_entry.ts",
"compare:bm25": "npx tsx src/evaluation/compare_bm25_runs.ts",
"bench": "npx tsx src/operator/benchctl.ts",
"bench:status": "npx tsx src/operator/benchctl.ts status",
"bench:managed": "npx tsx src/operator/benchctl.ts managed",
"bench:tui": "npx tsx src/operator/benchctl.ts tui"
},
"dependencies": {
"@earendil-works/pi-coding-agent": "^0.74.0",
"@earendil-works/pi-tui": "^0.74.0",
"chalk": "^5.6.2",
"tsx": "^4.20.6",
"typebox": "^1.1.24"
},
"devDependencies": {
"@types/node": "^24.5.2",
"oxfmt": "^0.36.0",
"oxlint": "^1.49.0",
"oxlint-tsgolint": "^0.16.0",
"typescript": "^5.9.2"
}
}