forked from withastro/flue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 772 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 772 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
{
"name": "@flue/postgres",
"version": "1.0.0-beta.9",
"type": "module",
"license": "Apache-2.0",
"homepage": "https://flueframework.com/",
"repository": {
"type": "git",
"url": "https://github.com/withastro/flue",
"directory": "packages/postgres"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"engines": {
"node": ">=22.19.0"
},
"scripts": {
"build": "tsdown",
"check:types": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"@flue/runtime": "workspace:*"
},
"devDependencies": {
"@electric-sql/pglite": "^0.2.17",
"tsdown": "^0.22.0",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
}
}