-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.58 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@paradedb/drizzle-paradedb",
"version": "0.5.0",
"description": "Official ParadeDB integration for Drizzle",
"keywords": [
"paradedb",
"drizzle",
"postgres",
"postgresql",
"search",
"bm25",
"text search",
"full text search",
"hybrid search",
"vector search",
"faceted search",
"facets",
"aggregations"
],
"homepage": "https://github.com/paradedb/drizzle-paradedb",
"bugs": {
"url": "https://github.com/paradedb/drizzle-paradedb/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paradedb/drizzle-paradedb.git"
},
"license": "MIT",
"author": "ParadeDB, Inc.",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm --dts",
"db:setup": "bash scripts/run_paradedb.sh",
"examples": "bash scripts/run_examples.sh",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"drizzle-orm": "1.0.0-rc.4"
},
"devDependencies": {
"@types/node": "^26.0.1",
"@vitest/coverage-v8": "^4.1.11",
"drizzle-kit": "1.0.0-rc.4",
"postgres": "^3.4.9",
"prettier": "^3.9.6",
"tsup": "^8.5.1",
"tsx": "^4.22.3",
"typescript": "6.0.3",
"vitest": "^4.1.11"
},
"packageManager": "pnpm@11.23.0",
"engines": {
"node": ">=22.12.0"
}
}