-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.12 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.12 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@flvmnt/pgfence",
"version": "0.4.1",
"description": "Postgres migration safety CLI: lock mode analysis, risk scoring, and safe rewrite recipes",
"type": "module",
"packageManager": "pnpm@10.33.0",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./lsp": "./dist/lsp/server.js",
"./analyzer": "./dist/analyzer.js",
"./types": "./dist/types.js"
},
"bin": {
"pgfence": "dist/index.js",
"pgfence-lsp": "dist/lsp/server.js"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "pnpm clean && tsc",
"prepack": "pnpm build",
"test": "vitest run tests/",
"test:watch": "vitest tests/",
"lint": "eslint src/ tests/",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"prepush": "./scripts/check-docs-coverage.sh && pnpm typecheck && pnpm build && ./scripts/check-public-boundaries.sh && pnpm lint && pnpm test"
},
"files": [
"dist",
"!dist/cloud",
"!dist/agent"
],
"keywords": [
"postgres",
"postgresql",
"migration",
"safety",
"linter",
"lock",
"ddl",
"schema"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"chalk": "^5.4.0",
"cli-table3": "^0.6.5",
"commander": "^13.0.0",
"libpg-query": "^16.0.0",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12"
},
"optionalDependencies": {
"@iarna/toml": "^2.2.5",
"@typescript-eslint/typescript-estree": "^8.0.0",
"pg": "^8.13.0"
},
"devDependencies": {
"@eslint/js": "^9.0.1",
"@types/node": "^20.0.0",
"@types/pg": "^8.11.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.0.0",
"prettier": "^3.0.0",
"tsx": "^4.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.56.0",
"vitest": "^3.0.0"
},
"pnpm": {
"overrides": {
"brace-expansion": "^2.0.3",
"flatted": "^3.4.2",
"minimatch": "^9.0.7",
"picomatch": "^4.0.4",
"rollup": "^4.59.0",
"vite": "^7.3.2"
}
}
}