-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 1.02 KB
/
package.json
File metadata and controls
24 lines (24 loc) · 1.02 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
{
"name": "mcp-vector-proxy",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"make-exe": "powershell -ExecutionPolicy Bypass -File make-exe.ps1",
"setup": "node -e \"const p=process.platform;const {execSync}=require('child_process');if(p==='win32'){execSync('powershell -ExecutionPolicy Bypass -File setup.ps1',{stdio:'inherit'})}else{execSync('bash setup.sh',{stdio:'inherit'})}\"",
"update": "npm run build && node -e \"const p=process.platform;const {execSync}=require('child_process');if(p==='win32'){execSync('powershell -ExecutionPolicy Bypass -File restart-tray.ps1',{stdio:'inherit'})}else{execSync('bash restart-tray.sh',{stdio:'inherit'})}\""
},
"dependencies": {
"@huggingface/transformers": "^3.8.1",
"@lancedb/lancedb": "^0.26.2",
"@modelcontextprotocol/sdk": "^1.0.0",
"express": "^5.2.1",
"systray2": "^2.1.4"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^20.0.0",
"typescript": "^5.4.0"
}
}