-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 959 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 959 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
32
33
34
35
36
37
38
{
"name": "pgforge",
"version": "0.1.0",
"description": "Modern PostgreSQL instance manager",
"module": "index.ts",
"type": "module",
"bin": {
"pgforge": "./index.ts"
},
"private": true,
"keywords": ["postgresql", "postgres", "database", "instance", "manager", "cli"],
"scripts": {
"build": "bun build index.ts --outfile dist/pgforge --target bun",
"build:binary": "bun build index.ts --compile --outfile pgforge",
"dev": "bun run --watch index.ts",
"start": "bun run index.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"commander": "^11.1.0",
"yaml": "^2.3.4",
"chalk": "^5.3.0",
"ora": "^8.0.1"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^20.10.5"
},
"peerDependencies": {
"typescript": "^5"
},
"engines": {
"bun": ">=1.0.0"
}
}