-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.01 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.01 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
{
"name": "@pgflow/edge-worker",
"version": "0.14.1",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/pgflow-dev/pgflow",
"directory": "pkgs/edge-worker"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./_internal": {
"types": "./dist/_internal.d.ts",
"import": "./dist/_internal.js"
},
"./testing": {
"types": "./dist/testing.d.ts",
"import": "./dist/testing.js"
}
},
"files": [
"dist"
],
"dependencies": {
"@henrygd/queue": "^1.0.7",
"@pgflow/core": "workspace:*",
"@pgflow/dsl": "workspace:*",
"@supabase/supabase-js": "^2.47.10",
"postgres": "3.4.5"
},
"devDependencies": {
"@types/deno": "^2.3.0",
"@types/node": "~18.16.20"
},
"publishConfig": {
"access": "public"
}
}