forked from kamilogorek/pglite-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 753 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 753 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
{
"name": "pglite-server",
"description": "Wire Protocol Server for PGlite",
"version": "0.1.3",
"repository": "https://github.com/kamilogorek/pglite-server",
"author": "Kamil Ogórek <kamil.ogorek@gmail.com>",
"license": "MIT",
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup src/index.ts --format esm --dts",
"test": "bun run test/main.ts && bun run test/invalid-input.ts"
},
"devDependencies": {
"@electric-sql/pglite": "^0.1.2",
"@types/node": "^20.12.4",
"@types/pg": "^8.11.4",
"pg": "^8.11.5",
"tsup": "^8.0.2",
"typescript": "^5.4.4"
}
}