-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.8 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
{
"name": "@act0r/sherlog",
"version": "0.3.22",
"type": "module",
"description": "Progressive search CLI for local Codex, Claude Code, and Pi session logs",
"license": "MIT",
"homepage": "https://github.com/catoncat/sherlog",
"repository": {
"type": "git",
"url": "git+https://github.com/catoncat/sherlog.git"
},
"bugs": {
"url": "https://github.com/catoncat/sherlog/issues"
},
"bin": {
"shlog": "dist/cli.js",
"sherlog": "dist/cli.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"codex",
"claude-code",
"pi",
"cli",
"fts",
"search",
"sqlite",
"session"
],
"engines": {
"node": ">=22"
},
"os": [
"darwin",
"linux"
],
"scripts": {
"build": "esbuild src/cli.ts --bundle --platform=node --target=node22 --format=esm --external:better-sqlite3 --external:chalk --external:commander --outfile=dist/cli.js && node scripts/post-build.mjs",
"prepublishOnly": "npm run build",
"test": "vitest run",
"check": "tsc --noEmit && vitest run",
"shlog": "tsx ./src/cli.ts",
"cxs": "npm run shlog --",
"eval:manual": "tsx ./eval/run-manual-eval.ts",
"eval:acceptance": "tsx ./eval/run-acceptance-eval.ts",
"eval:compare": "tsx ./eval/compare-eval-batches.ts",
"eval:perf": "tsx ./eval/perf-bench.ts",
"eval:dogfood": "tsx ./eval/run-dogfood-eval.ts"
},
"dependencies": {
"better-sqlite3": "^12.9.0",
"chalk": "^5.6.2",
"commander": "^14.0.3"
},
"devDependencies": {
"@emnapi/core": "^1.11.0",
"@emnapi/runtime": "^1.11.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.6.0",
"esbuild": "^0.28.0",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}