-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.17 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.17 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
{
"name": "sematic-cache",
"version": "1.1.0",
"description": "Semantic Cache is a library for caching natural text based on semantic similarity using LanceDB with multiple embedding provider support (OpenAI, Google Gemini, VoyageAI)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "bun test",
"typecheck": "bunx tsc --noEmit",
"prepublishOnly": "bun run build",
"dev": "tsc -p tsconfig.build.json --watch"
},
"keywords": [
"semantic",
"cache",
"vector",
"lancedb",
"embeddings",
"openai",
"gemini",
"voyageai",
"similarity",
"nlp",
"ai"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@lancedb/lancedb": "^0.22.2",
"voyageai": "^0.0.8"
},
"devDependencies": {
"@types/node": "^20.14.8",
"typescript": "^5",
"@types/bun": "latest"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/trfi/sematic-cache.git"
},
"bugs": {
"url": "https://github.com/trfi/sematic-cache/issues"
},
"homepage": "https://github.com/trfi/sematic-cache#readme"
}