-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.54 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
55
56
57
58
59
60
{
"name": "@upstash/vector",
"version": "1.1.7",
"author": "Oguzhan Olguncu <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/upstash/vector-js"
},
"exports": {
".": {
"import": "./dist/nodejs.mjs",
"require": "./dist/nodejs.js"
},
"./cloudflare": {
"import": "./dist/cloudflare.mjs",
"require": "./dist/cloudflare.js"
},
"./nodejs": {
"import": "./dist/nodejs.mjs",
"require": "./dist/nodejs.js"
}
},
"main": "./dist/nodejs.js",
"module": "./dist/nodejs.mjs",
"types": "./dist/nodejs.d.ts",
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"bun-types": "latest",
"eslint": "9.10.0",
"eslint-plugin-unicorn": "^55.0.0",
"husky": "^8.0.3",
"prettier": "^3.3.3",
"tsup": "latest",
"typescript": "^5.0.0",
"vitest": "^1.2.2"
},
"bugs": {
"url": "https://github.com/upstash/vector/issues"
},
"description": "An HTTP/REST based Vector DB client built on top of Upstash REST API.",
"files": [
"dist"
],
"homepage": "https://upstash.com/vector",
"keywords": [
"vector",
"upstash",
"db"
],
"license": "MIT",
"scripts": {
"test": "bun test src --coverage --bail --coverageSkipTestFiles=[test-utils.ts] --timeout 20000",
"fmt": "prettier --write .",
"lint": "tsc && eslint \"src/**/*.{js,ts,tsx}\" --quiet --fix",
"build": "tsup ",
"prepare": "husky install"
}
}