-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.31 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.31 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
53
54
55
56
57
58
59
60
{
"name": "database-handler-cli",
"version": "1.1.1",
"description": "A powerful, interactive CLI tool for managing PostgreSQL databases with smart dependency resolution, transactional safety, and multi-database support",
"author": "Raumain <romaintibo6@gmail.com>",
"license": "MIT",
"keywords": [
"postgresql",
"database",
"cli",
"backup",
"dump",
"import",
"kysely",
"migration",
"postgres",
"sql"
],
"homepage": "https://github.com/Raumain/database-handler-cli#readme",
"bugs": {
"url": "https://github.com/Raumain/database-handler-cli/issues",
"email": "romaintibo6@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/raumain/database-handler-cli.git"
},
"type": "module",
"main": "dist/src/cli.js",
"bin": {
"database-handler": "dist/src/cli.js"
},
"files": [
"dist",
"README.md",
"package.json"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"fmt": "biome check --write --unsafe .",
"fmt.check": "biome check .",
"build": "tsc",
"prepublishOnly": "bun run build"
},
"dependencies": {
"chalk": "^5.4.1",
"inquirer": "^12.7.0",
"kysely": "^0.28.2",
"pg": "^8.16.3",
"typescript": "^5.9.2"
},
"devDependencies": {
"@biomejs/biome": "^2.1.2",
"@types/bun": "^1.2.18",
"@types/pg": "^8.15.4",
"kysely-codegen": "^0.18.5"
}
}