@prisma-next/extension-supabase 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +74 -0
- package/dist/contract.d.mts +290 -0
- package/dist/contract.d.mts.map +1 -0
- package/dist/contract.mjs +68 -0
- package/dist/contract.mjs.map +1 -0
- package/dist/pack.d.mts +17 -0
- package/dist/pack.d.mts.map +1 -0
- package/dist/pack.mjs +467 -0
- package/dist/pack.mjs.map +1 -0
- package/dist/runtime.d.mts +7 -0
- package/dist/runtime.d.mts.map +1 -0
- package/dist/runtime.mjs +19 -0
- package/dist/runtime.mjs.map +1 -0
- package/dist/test/utils.d.mts +24 -0
- package/dist/test/utils.d.mts.map +1 -0
- package/dist/test/utils.mjs +64 -0
- package/dist/test/utils.mjs.map +1 -0
- package/package.json +88 -0
- package/src/contract/contract.d.ts +618 -0
- package/src/contract/contract.json +483 -0
- package/src/contract/contract.prisma +48 -0
- package/src/contract/handles.ts +78 -0
- package/src/exports/contract.ts +1 -0
- package/src/exports/pack.ts +1 -0
- package/src/exports/runtime.ts +31 -0
- package/src/pack/index.ts +55 -0
package/package.json
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@prisma-next/extension-supabase",
|
|
3
|
+
"version": "0.12.0",
|
|
4
|
+
"license": "Apache-2.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build:contract-space": "prisma-next contract emit",
|
|
9
|
+
"build": "tsdown",
|
|
10
|
+
"test": "vitest run",
|
|
11
|
+
"test:coverage": "vitest run --coverage",
|
|
12
|
+
"typecheck": "tsc --project tsconfig.json --noEmit",
|
|
13
|
+
"lint": "biome check . --error-on-warnings",
|
|
14
|
+
"lint:fix": "biome check --write .",
|
|
15
|
+
"lint:fix:unsafe": "biome check --write --unsafe .",
|
|
16
|
+
"clean": "rm -rf dist dist-tsc dist-tsc-prod coverage .tmp-output"
|
|
17
|
+
},
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"@prisma-next/contract": "workspace:0.12.0",
|
|
20
|
+
"@prisma-next/contract-authoring": "workspace:0.12.0",
|
|
21
|
+
"@prisma-next/family-sql": "workspace:0.12.0",
|
|
22
|
+
"@prisma-next/framework-components": "workspace:0.12.0",
|
|
23
|
+
"@prisma-next/migration-tools": "workspace:0.12.0",
|
|
24
|
+
"@prisma-next/sql-contract": "workspace:0.12.0",
|
|
25
|
+
"@prisma-next/sql-contract-ts": "workspace:0.12.0",
|
|
26
|
+
"@prisma-next/sql-operations": "workspace:0.12.0",
|
|
27
|
+
"@prisma-next/sql-relational-core": "workspace:0.12.0",
|
|
28
|
+
"@prisma-next/sql-runtime": "workspace:0.12.0",
|
|
29
|
+
"@prisma-next/sql-schema-ir": "workspace:0.12.0",
|
|
30
|
+
"@prisma-next/utils": "workspace:0.12.0",
|
|
31
|
+
"@standard-schema/spec": "^1.1.0",
|
|
32
|
+
"arktype": "^2.2.0"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@prisma-next/adapter-postgres": "workspace:0.12.0",
|
|
36
|
+
"@prisma-next/cli": "workspace:0.12.0",
|
|
37
|
+
"@prisma-next/driver-postgres": "workspace:0.12.0",
|
|
38
|
+
"@prisma-next/operations": "workspace:0.12.0",
|
|
39
|
+
"@prisma-next/postgres": "workspace:0.12.0",
|
|
40
|
+
"@prisma-next/sql-contract-psl": "workspace:0.12.0",
|
|
41
|
+
"@prisma-next/target-postgres": "workspace:0.12.0",
|
|
42
|
+
"@prisma-next/test-utils": "workspace:0.12.0",
|
|
43
|
+
"@prisma-next/tsconfig": "workspace:0.12.0",
|
|
44
|
+
"@prisma-next/tsdown": "workspace:0.12.0",
|
|
45
|
+
"@types/pg": "catalog:",
|
|
46
|
+
"pg": "catalog:",
|
|
47
|
+
"tsdown": "catalog:",
|
|
48
|
+
"typescript": "catalog:",
|
|
49
|
+
"vitest": "catalog:"
|
|
50
|
+
},
|
|
51
|
+
"peerDependencies": {
|
|
52
|
+
"@prisma-next/adapter-postgres": "workspace:0.12.0",
|
|
53
|
+
"typescript": ">=5.9"
|
|
54
|
+
},
|
|
55
|
+
"peerDependenciesMeta": {
|
|
56
|
+
"@prisma-next/adapter-postgres": {
|
|
57
|
+
"optional": true
|
|
58
|
+
},
|
|
59
|
+
"typescript": {
|
|
60
|
+
"optional": true
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"files": [
|
|
64
|
+
"dist",
|
|
65
|
+
"src"
|
|
66
|
+
],
|
|
67
|
+
"exports": {
|
|
68
|
+
"./pack": "./dist/pack.mjs",
|
|
69
|
+
"./runtime": "./dist/runtime.mjs",
|
|
70
|
+
"./contract": {
|
|
71
|
+
"types": "./dist/contract.d.mts",
|
|
72
|
+
"import": "./dist/contract.mjs"
|
|
73
|
+
},
|
|
74
|
+
"./test/utils": {
|
|
75
|
+
"types": "./dist/test/utils.d.mts",
|
|
76
|
+
"import": "./dist/test/utils.mjs"
|
|
77
|
+
},
|
|
78
|
+
"./package.json": "./package.json"
|
|
79
|
+
},
|
|
80
|
+
"engines": {
|
|
81
|
+
"node": ">=24"
|
|
82
|
+
},
|
|
83
|
+
"repository": {
|
|
84
|
+
"type": "git",
|
|
85
|
+
"url": "https://github.com/prisma/prisma-next.git",
|
|
86
|
+
"directory": "packages/3-extensions/supabase"
|
|
87
|
+
}
|
|
88
|
+
}
|