-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.78 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.78 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
{
"name": "@mixedbread/mgrep",
"version": "0.1.10",
"type": "module",
"author": "Mixedbread <support@mixedbread.com>",
"homepage": "https://www.mixedbread.com/",
"bugs": {
"url": "https://github.com/mixedbread-ai/mgrep/issues"
},
"repository": {
"type": "git",
"url": "github:mixedbread-ai/mgrep"
},
"main": "index.js",
"bin": {
"mgrep": "dist/index.js"
},
"scripts": {
"build": "tsc",
"postbuild": "chmod +x dist/index.js && cp -r plugins dist/",
"dev": "npx tsc && node dist/index.js",
"test": "bats test/test.bats --filter-tags !long-running",
"format": "biome check --write .",
"format:check": "biome check .",
"lint": "biome lint --check .",
"typecheck": "tsc --noEmit",
"prepare": "npm run build"
},
"keywords": [
"mixedbread",
"search",
"grep",
"glob",
"search",
"search"
],
"files": [
"dist",
"README.md"
],
"license": "Apache-2.0",
"description": "",
"dependencies": {
"@clack/prompts": "^0.11.0",
"@mixedbread/sdk": "^0.43.0",
"@modelcontextprotocol/sdk": "^1.22.0",
"@types/express": "^5.0.5",
"better-auth": "^1.3.34",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"comment-json": "^4.5.0",
"ignore": "^7.0.5",
"istextorbinary": "^9.5.0",
"open": "^10.2.0",
"ora": "^5.4.1",
"p-limit": "^3.1.0",
"winston": "^3.18.3",
"winston-daily-rotate-file": "^5.0.0",
"xxhash-wasm": "^1.1.0",
"yaml": "^2.8.2",
"yocto-spinner": "^1.0.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@biomejs/biome": "2.3.4",
"@types/node": "^24.10.0",
"bats": "^1.13.0",
"bats-assert": "github:ztombol/bats-assert",
"bats-support": "github:ztombol/bats-support",
"husky": "^9.1.7",
"typescript": "^5.9.3"
}
}