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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81{
"name": "pglaunch",
"version": "5.5.7",
"description": "Generate multiple PostgreSQL connection strings/databases using CLI for development environments!",
"keywords": [
"cli",
"connection",
"database",
"docker",
"launcher",
"pg",
"pgcli",
"pglaunch",
"pgsql",
"postgres",
"postgresql",
"psql"
],
"homepage": "https://github.com/nrjdalal/pglaunch#readme",
"bugs": "https://github.com/nrjdalal/pglaunch/issues",
"repository": "nrjdalal/pglaunch",
"funding": "https://github.com/sponsors/nrjdalal",
"license": "MIT",
"author": {
"name": "Neeraj Dalal",
"email": "admin@nrjdalal.com",
"url": "https://nrjdalal.com"
},
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./dist/bin/index.js",
"files": [
"dist"
],
"scripts": {
"bin": "tsup && node dist/bin/index.js",
"build": "tsup",
"dev": "tsup --watch",
"prepare": "npx simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint --edit $1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"package.json": "sort-package-json"
},
"prettier": {
"plugins": [
"@ianvs/prettier-plugin-sort-imports"
],
"semi": false
},
"dependencies": {
"get-port": "^7.1.0",
"nano-spawn": "^1.0.2",
"nanoid": "^5.1.5",
"terminal-link": "^4.0.0",
"yoctocolors": "^2.1.1"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@ianvs/prettier-plugin-sort-imports": "^4.4.2",
"@types/node": "^22.15.24",
"lint-staged": "^15.5.2",
"prettier": "^3.5.3",
"simple-git-hooks": "^2.13.0",
"sort-package-json": "^3.2.1",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
}
}