-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (25 loc) · 748 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (25 loc) · 748 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
{
"name": "postgres-backup",
"version": "1.0.0",
"description": "Production PostgreSQL backup system with S3 storage",
"main": "index.ts",
"type": "module",
"private": true,
"scripts": {
"build": "bun build --compile --minify --target=bun-linux-x64 ./index.ts --outfile postgres-backup",
"build:all": "./build-prod.sh",
"backup": "bun run index.ts",
"test": "pg_isready -d $DATABASE_URL && echo 'Database connection: OK'",
"deploy": "chmod +x postgres-backup && echo 'Ready for deployment'"
},
"keywords": ["postgresql", "backup", "s3", "cron", "production"],
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"engines": {
"bun": ">=1.0.0"
}
}