|
1 | 1 | {
|
2 | 2 | "name": "@upstash/vector",
|
3 |
| - "description": "An HTTP/REST based Vector DB client built on top of Upstash REST API.", |
4 |
| - "module": "./dist/index.mjs", |
5 |
| - "main": "./dist/index.js", |
6 |
| - "types": "./dist/index.d.ts", |
7 | 3 | "version": "v0.1.0-alpha-9",
|
| 4 | + "author": "Oguzhan Olguncu <[email protected]>", |
| 5 | + "repository": { |
| 6 | + "type": "git", |
| 7 | + "url": "https://github.com/upstash/vector-js" |
| 8 | + }, |
| 9 | + "main": "./dist/index.js", |
| 10 | + "module": "./dist/index.mjs", |
| 11 | + "devDependencies": { |
| 12 | + "@biomejs/biome": "^1.4.1", |
| 13 | + "@commitlint/cli": "^18.6.0", |
| 14 | + "@commitlint/config-conventional": "^18.6.0", |
| 15 | + "bun-types": "latest", |
| 16 | + "husky": "^8.0.3", |
| 17 | + "tsup": "latest", |
| 18 | + "typescript": "^5.0.0", |
| 19 | + "vitest": "^1.2.2" |
| 20 | + }, |
| 21 | + "bugs": { |
| 22 | + "url": "https://github.com/upstash/vector/issues" |
| 23 | + }, |
| 24 | + "description": "An HTTP/REST based Vector DB client built on top of Upstash REST API.", |
| 25 | + "files": [ |
| 26 | + "dist" |
| 27 | + ], |
| 28 | + "homepage": "https://upstash.com/vector", |
8 | 29 | "keywords": [
|
9 | 30 | "vector",
|
10 | 31 | "upstash",
|
11 | 32 | "db"
|
12 | 33 | ],
|
13 |
| - "author": "Oguzhan Olguncu <[email protected]>", |
14 | 34 | "license": "MIT",
|
15 |
| - "files": [ |
16 |
| - "dist" |
17 |
| - ], |
18 |
| - "bugs": { |
19 |
| - "url": "https://github.com/upstash/vector/issues" |
20 |
| - }, |
21 | 35 | "scripts": {
|
22 |
| - "test": "bun test src --coverage --bail --coverageSkipTestFiles=[test-utils.ts]", |
| 36 | + "test": "bun test src --coverage --bail --coverageSkipTestFiles=[test-utils.ts] && vitest run --typecheck", |
23 | 37 | "fmt": "bunx biome check --apply ./src",
|
24 | 38 | "build": "tsup",
|
25 | 39 | "prepare": "husky install"
|
26 | 40 | },
|
27 |
| - "devDependencies": { |
28 |
| - "typescript": "^5.0.0", |
29 |
| - "@biomejs/biome": "^1.4.1", |
30 |
| - "@commitlint/cli": "^18.6.0", |
31 |
| - "@commitlint/config-conventional": "^18.6.0", |
32 |
| - "bun-types": "latest", |
33 |
| - "husky": "^8.0.3", |
34 |
| - "tsup": "latest" |
35 |
| - }, |
36 |
| - "repository": { |
37 |
| - "type": "git", |
38 |
| - "url": "https://github.com/upstash/vector-js" |
39 |
| - }, |
40 |
| - "homepage": "https://upstash.com/vector" |
| 41 | + "types": "./dist/index.d.ts" |
41 | 42 | }
|
0 commit comments