-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.19 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.19 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
{
"name": "ghcrawl-workspace",
"private": true,
"version": "0.0.0",
"type": "module",
"description": "Local-first GitHub issue and pull request crawler with clustering and a terminal UI",
"author": "PwrDrvr LLC <harold@pwrdrvr.com>",
"license": "MIT",
"packageManager": "pnpm@10.29.3",
"scripts": {
"build": "pnpm -r build",
"clean": "node ./scripts/clean-workspace.mjs dist tsbuildinfo",
"clean:dist": "node ./scripts/clean-workspace.mjs dist",
"clean:tsbuildinfo": "node ./scripts/clean-workspace.mjs tsbuildinfo",
"cli": "node ./apps/cli/bin/ghcrawl.js",
"bootstrap": "node ./apps/cli/bin/ghcrawl.js init",
"doctor": "node ./apps/cli/bin/ghcrawl.js doctor",
"health": "node ./apps/cli/bin/ghcrawl.js doctor",
"op:exec": "node ./scripts/op-run.mjs exec",
"op:shell": "node ./scripts/op-run.mjs shell",
"op:doctor": "node ./scripts/op-run.mjs exec -- doctor",
"op:health": "node ./scripts/op-run.mjs exec -- doctor",
"op:tui": "node ./scripts/op-run.mjs exec -- tui",
"sync": "node ./apps/cli/bin/ghcrawl.js sync",
"refresh": "node ./apps/cli/bin/ghcrawl.js refresh",
"embed": "node ./apps/cli/bin/ghcrawl.js embed",
"cluster": "node ./apps/cli/bin/ghcrawl.js cluster",
"clusters": "node ./apps/cli/bin/ghcrawl.js clusters",
"cluster-detail": "node ./apps/cli/bin/ghcrawl.js cluster-detail",
"search": "node ./apps/cli/bin/ghcrawl.js search",
"neighbors": "node ./apps/cli/bin/ghcrawl.js neighbors",
"tui": "node ./apps/cli/bin/ghcrawl.js tui",
"serve": "node ./apps/cli/bin/ghcrawl.js serve",
"project:sync": "node ./.agents/skills/project-manager/scripts/sync-work-items.mjs",
"test:cluster-perf": "pnpm --filter @ghcrawl/api-core test:cluster-perf",
"pack:smoke": "node ./scripts/pack-smoke.mjs",
"release:apply-version": "node ./scripts/apply-release-version.mjs",
"typecheck": "pnpm build && pnpm -r typecheck",
"test": "pnpm -r test"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.3.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"yaml": "^2.8.2"
}
}