-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.03 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.03 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
{
"name": "linkledger-cli",
"version": "0.1.0",
"description": "CLI-first personal knowledge capture and retrieval for human+agent workflows",
"type": "module",
"bin": {
"linkledger": "dist/cli/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"bench:seed": "node --import tsx scripts/seed-benchmark-data.ts",
"backfill:reddit": "node --import tsx scripts/backfill-reddit-source-type.ts",
"bench:find": "node --import tsx scripts/bench-find.ts",
"bench:brief": "node --import tsx scripts/bench-brief.ts",
"bench": "npm run bench:find && npm run bench:brief",
"test": "node --import tsx --test --test-concurrency=1 test/**/*.test.ts",
"typecheck": "tsc -p tsconfig.json --noEmit",
"start": "tsx src/cli/index.ts"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"better-sqlite3": "^11.10.0",
"commander": "^14.0.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.15.30",
"tsx": "^4.20.5",
"typescript": "^5.8.3"
}
}