This repository was archived by the owner on Oct 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.33 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.33 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
50
51
52
53
54
55
56
57
58
{
"name": "jazz-vector",
"version": "0.1.3",
"description": "Local-first vector similarity search for Jazz Tools",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"src",
"dist",
"LICENSE",
"README.md"
],
"exports": {
".": "./dist/index.js",
"./react": "./dist/react/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"vector search",
"semantic search",
"local-first",
"personalization",
"rag"
],
"author": "Radek Kysely <radek@kysely.org>",
"license": "MIT",
"peerDependencies": {
"jazz-tools": "^0.17.4",
"react": "*"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^19.1.10",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/kysely/jazz-vector.git"
},
"bugs": {
"url": "https://github.com/kysely/jazz-vector/issues"
},
"homepage": "https://github.com/kysely/jazz-vector#readme"
}