-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1005 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1005 Bytes
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": "weaviate-api",
"version": "1.1.1",
"description": "An API to simplify Weaviate vector db queries",
"main": "build/index.js",
"type": "module",
"types": "build/index.d.ts",
"keywords": [
"vector",
"database",
"fuzzy",
"search",
"ai",
"api",
"weaviate",
"cohere",
"huggingface",
"openai",
"hnsw"
],
"repository": {
"type": "git",
"url": "https://github.com/tepinly/Weaviate-API"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc-watch --onSuccess \"node build/index.js\"",
"clean": "tsc-watch --build --clean"
},
"author": "Youssef Fadel (tepinly)",
"license": "ISC",
"dependencies": {
"dotenv": "^16.0.3",
"weaviate-ts-client": "^1.0.0"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"ts-node-dev": "^2.0.0",
"tsc": "^2.0.4",
"tsc-watch": "^6.0.0",
"typescript": "^5.0.4"
}
}