-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.13 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.13 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
{
"name": "lytvector",
"version": "1.1.0",
"main": "dist/store.js",
"types": "dist/store.d.ts",
"scripts": {
"dev": "nodemon src/index.ts",
"start": "ts-node src/index.ts",
"build": "rm -rf dist && tsc"
},
"keywords": [
"vector-db",
"lyt-vector",
"lytvector",
"js vector",
"vector js",
"vector",
"js vectordb"
],
"author": "Soumya Mondal",
"license": "ISC",
"description": "A simple vector database for storing and searching vectors.",
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@google/generative-ai": "^0.24.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^5.1.0",
"keyhasher": "^1.5.1",
"node-cache": "^5.1.2",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/node": "^22.14.0",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IndGeek/lyt-vector.git"
},
"homepage": "https://github.com/IndGeek/lyt-vector#readme"
}