forked from seveibar/pgstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.25 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.25 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
{
"name": "pgstrap",
"repository": "seveibar/pgstrap",
"type": "module",
"version": "1.0.6",
"description": "Bootstrap patterns for Typescript/Postgres projects",
"main": "dist/index.cjs",
"scripts": {
"test": "bun test",
"build": "tsup ./src/index.ts ./src/cli.ts --outDir ./dist --dts --sourcemap inline",
"format": "biome format . --write",
"format:check": "biome format ."
},
"bin": {
"pgstrap": "./dist/cli.cjs"
},
"keywords": [
"postgres",
"typescript",
"bootstrap"
],
"author": "",
"license": "MIT",
"dependencies": {
"@electric-sql/pglite": "^0.3.3",
"pg-gateway": "^0.3.0-beta.4",
"pg-schema-dump": "^2.0.2",
"yargs": "^17.7.2"
},
"peerDependencies": {
"esbuild-register": "*",
"kysely": "*",
"node-pg-migrate": "*",
"pg-connection-from-env": "*",
"zapatos": "*"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@types/debug": "^4.1.8",
"@types/yargs": "^17.0.32",
"esbuild": "^0.18.16",
"esbuild-register": "^3.4.2",
"esbuild-runner": "^2.2.2",
"mkdirp": "^3.0.1",
"mock-fs": "^5.2.0",
"node-pg-migrate": "^6.2.2",
"pg": "^8.11.1",
"pg-connection-from-env": "^1.1.0",
"tsup": "^7.1.0",
"zapatos": "^6.1.4"
}
}