Spaces:
Paused
Paused
File size: 616 Bytes
5dfbe50 | 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 | {
"name": "@colpali/proxy",
"version": "1.0.0",
"description": "Hono proxy server for ColPali Vespa Visual Retrieval",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"start:tsx": "tsx src/index.ts"
},
"dependencies": {
"@hono/node-server": "^1.8.0",
"@types/uuid": "^10.0.0",
"dotenv": "^16.4.1",
"hono": "^4.0.0",
"node-fetch": "^3.3.2",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.11.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}
|