-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.85 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.85 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
61
62
{
"name": "aza-pg",
"version": "1.0.0",
"description": "Production-Ready PostgreSQL 18 Infrastructure Stack with extensions and tools",
"type": "module",
"trustedDependencies": [
"squawk-cli"
],
"author": "Art Shendrik",
"license": "MIT",
"scripts": {
"validate": "bun scripts/validate.ts",
"validate:all": "bun scripts/validate.ts --all",
"validate:fix": "bun scripts/validate.ts --fix",
"format": "bun scripts/validate.ts --fix",
"lint": "bun scripts/validate.ts",
"test": "bun scripts/test-all.ts --skip-build",
"test:all": "bun scripts/test-all.ts",
"test:unit": "bun run validate",
"test:image": "bun scripts/test/test-released-image.ts",
"test:pgflow": "bun scripts/test/test-pgflow-schema.ts && bun scripts/test/test-pgflow-functional.ts && bun scripts/test/test-pgflow-multiproject.ts",
"pgflow:generate": "bun scripts/pgflow/generate-schema.ts",
"build": "bun scripts/build.ts",
"security:scan": "bun scripts/security-scan.ts",
"generate": "bun scripts/generate-all.ts",
"hooks:install": "bun-git-hooks",
"postinstall": "bun-git-hooks",
"oxlint": "oxlint",
"oxlint:fix": "oxlint --fix",
"prettier:check": "prettier --check",
"prettier:write": "prettier --write",
"squawk": "squawk",
"tsc": "tsc"
},
"devDependencies": {
"@bun-security-scanner/osv": "^1.0.0",
"@pgflow/client": "0.13.3",
"@pgflow/dsl": "0.13.3",
"@types/bun": "^1.3.10",
"arktype": "^2.2.0",
"bun-git-hooks": "^0.3.1",
"oxlint": "^1.51.0",
"prettier": "^3.8.1",
"sql-formatter": "^15.7.2",
"squawk-cli": "^2.43.0",
"typescript": "^5.9.3",
"yaml": "^2.8.2"
},
"engines": {
"bun": ">=1.3.0"
},
"keywords": [
"postgresql",
"postgres",
"database",
"docker",
"pgbouncer",
"extensions",
"infrastructure",
"production"
]
}