-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.59 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@prisma-next/extension-pgvector",
"version": "0.16.0",
"license": "Apache-2.0",
"type": "module",
"sideEffects": false,
"scripts": {
"build:contract-space": "prisma-next contract emit",
"build": "tsdown",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --project tsconfig.json --noEmit",
"lint": "biome check . --error-on-warnings",
"lint:fix": "biome check --write .",
"lint:fix:unsafe": "biome check --write --unsafe .",
"clean": "rm -rf dist dist-tsc dist-tsc-prod coverage .tmp-output"
},
"dependencies": {
"@prisma-next/contract": "workspace:0.16.0",
"@prisma-next/contract-authoring": "workspace:0.16.0",
"@prisma-next/family-sql": "workspace:0.16.0",
"@prisma-next/framework-components": "workspace:0.16.0",
"@prisma-next/migration-tools": "workspace:0.16.0",
"@prisma-next/sql-contract": "workspace:0.16.0",
"@prisma-next/sql-operations": "workspace:0.16.0",
"@prisma-next/sql-relational-core": "workspace:0.16.0",
"@prisma-next/sql-runtime": "workspace:0.16.0",
"@prisma-next/sql-schema-ir": "workspace:0.16.0",
"@prisma-next/target-postgres": "workspace:0.16.0",
"@prisma-next/utils": "workspace:0.16.0",
"@standard-schema/spec": "^1.1.0",
"arktype": "^2.2.2"
},
"devDependencies": {
"@prisma-next/adapter-postgres": "workspace:0.16.0",
"@prisma-next/cli": "workspace:0.16.0",
"@prisma-next/operations": "workspace:0.16.0",
"@prisma-next/postgres": "workspace:0.16.0",
"@prisma-next/sql-contract-ts": "workspace:0.16.0",
"@prisma-next/test-utils": "workspace:0.16.0",
"@prisma-next/tsconfig": "workspace:0.16.0",
"@prisma-next/tsdown": "workspace:0.16.0",
"tsdown": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"peerDependencies": {
"@prisma-next/adapter-postgres": "workspace:0.16.0",
"typescript": ">=5.9"
},
"peerDependenciesMeta": {
"@prisma-next/adapter-postgres": {
"optional": true
},
"typescript": {
"optional": true
}
},
"files": [
"dist",
"src"
],
"exports": {
"./codec-types": "./dist/codec-types.mjs",
"./column-types": "./dist/column-types.mjs",
"./control": "./dist/control.mjs",
"./operation-types": "./dist/operation-types.mjs",
"./pack": "./dist/pack.mjs",
"./runtime": "./dist/runtime.mjs",
"./package.json": "./package.json"
},
"engines": {
"node": ">=24"
},
"repository": {
"type": "git",
"url": "https://github.com/prisma/prisma-next.git",
"directory": "packages/3-extensions/pgvector"
}
}