-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.04 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
{
"name": "codesift-workspace",
"private": true,
"version": "0.0.0",
"description": "Local-first lexical code search engine for CLI, SDK, and MCP.",
"license": "MIT",
"packageManager": "pnpm@10.33.2",
"engines": {
"node": "^20.0.0 || ^22.0.0"
},
"scripts": {
"build": "pnpm -r --filter=./packages/** build",
"clean": "pnpm -r --filter=./packages/** clean && rimraf node_modules coverage",
"test": "vitest run",
"test:offline": "node --require ./scripts/block-network.cjs ./scripts/offline-check.mjs",
"test:smoke-install": "node scripts/smoke-pack-install.mjs",
"typecheck": "pnpm -r --filter=./packages/** typecheck",
"bench": "pnpm --filter @codesift/eval run bench",
"docs": "typedoc",
"ci": "pnpm build && pnpm typecheck && pnpm test && pnpm run test:offline && pnpm bench"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.0.1",
"rimraf": "^6.0.1",
"tsup": "^8.5.0",
"typedoc": "^0.28.19",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}