-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
111 lines (111 loc) · 2.48 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "pgvector",
"version": "0.2.0",
"description": "pgvector support for Node.js, Deno, and Bun (and TypeScript)",
"homepage": "https://github.com/pgvector/pgvector-node",
"license": "MIT",
"authors": [
"ankane"
],
"repository": {
"type": "git",
"url": "https://github.com/pgvector/pgvector-node"
},
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
},
"./knex": {
"types": "./types/knex/index.d.ts",
"default": "./src/knex/index.js"
},
"./kysely": {
"types": "./types/kysely/index.d.ts",
"default": "./src/kysely/index.js"
},
"./mikro-orm": {
"types": "./types/mikro-orm/index.d.ts",
"default": "./src/mikro-orm/index.js"
},
"./objection": {
"types": "./types/objection/index.d.ts",
"default": "./src/objection/index.js"
},
"./pg": {
"types": "./types/pg/index.d.ts",
"default": "./src/pg/index.js"
},
"./pg-promise": {
"types": "./types/pg-promise/index.d.ts",
"default": "./src/pg-promise/index.js"
},
"./sequelize": {
"types": "./types/sequelize/index.d.ts",
"default": "./src/sequelize/index.js"
},
"./utils": {
"types": "./types/utils/index.d.ts",
"default": "./src/utils/index.js"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"*": [
"types/index.d.ts"
],
"knex": [
"types/knex/index.d.ts"
],
"kysely": [
"types/kysely/index.d.ts"
],
"mikro-orm": [
"types/mikro-orm/index.d.ts"
],
"objection": [
"types/objection/index.d.ts"
],
"pg": [
"types/pg/index.d.ts"
],
"pg-promise": [
"types/pg-promise/index.d.ts"
],
"sequelize": [
"types/sequelize/index.d.ts"
],
"utils": [
"types/utils/index.d.ts"
]
}
},
"files": [
"src",
"types"
],
"engines": {
"node": ">= 18"
},
"scripts": {
"build": "tsc",
"test": "node --test"
},
"devDependencies": {
"@mikro-orm/core": "^6.1.1",
"@mikro-orm/postgresql": "^6.1.1",
"@prisma/client": "^5.7.0",
"drizzle-orm": "^0.36.0",
"knex": "^3.1.0",
"kysely": "^0.27.3",
"objection": "^3.1.3",
"pg": "^8.6.0",
"pg-promise": "^11.4.3",
"postgres": "^3.3.4",
"sequelize": "^6.6.2",
"slonik": "^46.1.0",
"typeorm": "^0.3.17",
"typescript": "^5.0.3"
}
}