-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 922 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 922 Bytes
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
{
"name": "@pgflow/dsl",
"version": "0.14.1",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/pgflow-dev/pgflow",
"directory": "pkgs/dsl"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"private": false,
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./platforms": {
"types": "./dist/platforms/index.d.ts",
"import": "./dist/platforms/index.js"
},
"./supabase": {
"types": "./dist/platforms/supabase.d.ts",
"import": "./dist/platforms/supabase.js"
}
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^22.14.1",
"postgres": "^3.4.5",
"@supabase/supabase-js": "^2.47.10"
}
}