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{
"name": "vite-postgres",
"type": "module",
"version": "1.0.0-beta.4",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"files": [
"dist"
],
"license": "MIT",
"author": "Alec Larson",
"repository": {
"type": "git",
"url": "https://github.com/aleclarson/vite-postgres.git"
},
"prettier": "@alloc/prettier-config",
"scripts": {
"dev": "rimraf dist && tsup --sourcemap --watch",
"build": "rimraf dist && tsup",
"format": "prettier --write .",
"lint": "tsc-lint",
"test": "vitest",
"prepublishOnly": "pnpm build"
},
"devDependencies": {
"@alloc/prettier-config": "^1.0.0",
"@types/node": "^25.0.3",
"prettier": "^3.7.4",
"radashi": "^12.7.1",
"rimraf": "^6.1.2",
"tsc-lint": "^0.1.9",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vitest": "^4.0.16"
},
"dependencies": {
"exit-hook": "^5.0.1",
"get-port": "^7.1.0"
}
}