-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.26 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.26 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
{
"name": "@pgflow/client",
"version": "0.14.1",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/pgflow-dev/pgflow",
"directory": "pkgs/client"
},
"type": "module",
"scripts": {
"verify-exports": "node scripts/verify-exports.js"
},
"dependencies": {
"@pgflow/core": "workspace:*",
"@pgflow/dsl": "workspace:*",
"@supabase/supabase-js": "^2.49.4",
"nanoevents": "^7.0.1",
"uuid": "^9.0.0"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"unpkg": "./dist/pgflow-client.browser.js",
"private": false,
"sideEffects": false,
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./browser": {
"types": "./dist/index.d.ts",
"default": "./dist/pgflow-client.browser.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@pgflow/dsl": "workspace:*",
"@types/uuid": "^10.0.0",
"postgres": "^3.4.5",
"terser": "^5.43.0",
"vite-plugin-dts": "~3.8.1",
"vitest": "1.3.1"
}
}