-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.41 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
{
"name": "muser",
"version": "0.1.0",
"description": "Index, vectorize, and search a folder of images by natural language with CLIP. CLI + MCP UI app.",
"type": "module",
"license": "MIT",
"keywords": [
"clip",
"image-search",
"vector-search",
"lancedb",
"mcp",
"cli",
"embeddings"
],
"bin": {
"muser": "./src/cli.ts",
"muser-mcp": "./src/mcp.ts"
},
"files": [
"src",
"ui",
"dist"
],
"scripts": {
"cli": "bun src/cli.ts",
"mcp": "bun src/mcp.ts",
"mcp:http": "bun src/mcp.ts --http",
"preview": "node preview.mjs",
"dev:ui": "vite",
"build:ui": "vite build",
"build": "bun run build:ui",
"postinstall": "bun run build:ui || true",
"typecheck": "tsc --noEmit",
"changeset": "changeset",
"version": "changeset version",
"release": "bun run build && changeset publish"
},
"dependencies": {
"@huggingface/transformers": "^3.1.2",
"@lancedb/lancedb": "^0.14.0",
"@modelcontextprotocol/ext-apps": "^1.2.2",
"@modelcontextprotocol/sdk": "^1.27.1",
"commander": "^13.0.0",
"sharp": "^0.34.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@types/bun": "^1.1.0",
"@types/node": "^22.0.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vite-plugin-singlefile": "^2.0.0"
},
"trustedDependencies": [
"onnxruntime-node",
"protobufjs"
]
}