forked from pgvector/pgvector-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1000 Bytes
/
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
{
"name": "pgvector-ts",
"version": "0.1.1",
"description": "pgvector support for Node.js and typescript",
"homepage": "https://github.com/pgvector/pgvector-node",
"license": "MIT",
"authors": [
"ankane"
],
"keywords": [
"sequelize",
"typescript",
"postgresql",
"postgres",
"vector"
],
"repository": {
"type": "git",
"url": "https://github.com/pgvector/pgvector-node.js"
},
"exports": {
"./pg": {
"require": "./pg/index.js",
"types": "./types/pg/index.d.ts"
},
"./sequelize": {
"require": "./sequelize/index.js",
"types": "./types/sequelize/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"pg",
"sequelize",
"utils"
],
"engines": {
"node": ">= 12"
},
"scripts": {
"test": "jest"
},
"devDependencies": {
"jest": "^27.0.4",
"pg": "^8.6.0",
"pg-promise": "^10.10.2",
"sequelize": "^6.6.2",
"typescript": "^4.9.5"
}
}