-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·44 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
executable file
·44 lines (44 loc) · 1.22 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
{
"name": "facevector-engine",
"version": "1.0.0",
"description": "FaceVector Engine - Face recognition and vector similarity search API using ArcFace embeddings, RetinaFace detection, and PostgreSQL pgvector",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsx watch src/server.ts",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.940.0",
"@aws-sdk/lib-storage": "^3.940.0",
"@types/multer": "^2.0.0",
"express": "^5.1.0",
"jimp": "^1.6.0",
"multer": "^2.0.2",
"onnxruntime-node": "^1.23.2",
"pg": "^8.11.0",
"pgvector": "^0.2.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/express": "^5.0.5",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.0",
"@types/pg": "^8.11.6",
"@types/supertest": "^6.0.2",
"eslint": "^9.17.0",
"jest": "^30.2.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.18.2",
"vite": "^7.2.4",
"vitest": "^4.0.13"
}
}