-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.55 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.55 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
{
"name": "@flvmnt/pgfence",
"version": "0.4.1",
"description": "Postgres migration safety CLI: lock mode analysis, risk scoring, and safe rewrite recipes",
"type": "module",
"main": "dist/index.js",
"bin": {
"pgfence": "dist/index.js",
"pgfence-lsp": "dist/lsp/server.js"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"test": "vitest run tests/",
"test:watch": "vitest tests/",
"lint": "eslint src/ tests/",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"prepush": "pnpm typecheck && pnpm lint && pnpm test"
},
"files": [
"dist",
"src",
"!src/cloud",
"!src/agent",
"!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"
}
}