-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.1 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
{
"name": "osgrep",
"version": "0.5.16",
"author": "Ryandonofrio <ryandonofrio@gmail.com>",
"homepage": "https://www.ryan.donofr.io",
"bugs": {
"url": "https://github.com/Ryandonofrio3/osgrep/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Ryandonofrio3/osgrep.git"
},
"main": "index.js",
"bin": {
"osgrep": "dist/index.js"
},
"scripts": {
"prebuild": "mkdir -p dist",
"build": "tsc",
"postbuild": "chmod +x dist/index.js",
"dev": "npx tsc && node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"benchmark": "./run-benchmark.sh",
"benchmark:index": "./run-benchmark.sh $HOME/osgrep-benchmarks --index",
"benchmark:agent": "npx tsx src/bench/benchmark-agent.ts",
"benchmark:chart": "npx tsx src/bench/generate-benchmark-chart.ts",
"format": "biome check --write .",
"format:check": "biome check .",
"lint": "biome lint .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm build"
},
"keywords": [
"osgrep",
"grep",
"glob",
"search"
],
"files": [
"dist",
"plugins",
"README.md",
"LICENSE",
"NOTICE"
],
"license": "Apache-2.0",
"description": "Local grep-like search tool for your codebase.",
"dependencies": {
"@clack/prompts": "^0.11.0",
"@huggingface/transformers": "^3.8.0",
"@lancedb/lancedb": "^0.22.3",
"@modelcontextprotocol/sdk": "^1.24.3",
"apache-arrow": "^18.1.0",
"chalk": "^5.6.2",
"chokidar": "^4.0.3",
"cli-highlight": "^2.1.11",
"commander": "^14.0.2",
"dotenv": "^17.2.3",
"fast-glob": "^3.3.3",
"ignore": "^5.0.0",
"lmdb": "^3.4.4",
"onnxruntime-node": "1.21.0",
"ora": "^5.4.1",
"piscina": "^5.1.4",
"simsimd": "^6.5.5",
"uuid": "^9.0.1",
"web-tree-sitter": "^0.25.10",
"zod": "^4.1.12"
},
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.50",
"@biomejs/biome": "2.3.4",
"@types/node": "^24.10.1",
"@types/uuid": "^9.0.8",
"node-gyp": "^12.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^1.6.0"
}
}