-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.32 KB
/
package.json
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
52
53
54
{
"name": "@upstash/semantic-cache",
"version": "1.0.3",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"test": "bun test",
"fmt": "prettier --write .",
"lint": "tsc && eslint \"src/**/*.{js,ts,tsx}\" --quiet --fix",
"build": "tsup",
"prepare": "husky install"
},
"bugs": {
"url": "https://github.com/upstash/semantic-cache/issues"
},
"description": "A Semantic cache built on top of Upstash Vector DB",
"files": [
"dist"
],
"homepage": "https://upstash.com/vector",
"keywords": [
"vector",
"upstash",
"db",
"semantic-cache",
"cache",
"classification"
],
"author": "Enes Akar <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/upstash/semantic-cache"
},
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "^20.12.2",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"bun-types": "latest",
"eslint": "^8",
"eslint-plugin-unicorn": "^51.0.1",
"husky": "^9.0.10",
"prettier": "^3.2.5",
"tsup": "^8.2.3",
"typescript": "^5.4.5",
"vitest": "latest"
},
"dependencies": {
"@upstash/vector": "^1.1.3"
}
}