-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.67 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
{
"name": "pglens",
"version": "3.2.0",
"description": "A no-code PostgreSQL workstation: browse, filter, edit, and query your databases from a fast local web UI",
"bin": {
"pglens": "./bin/pglens"
},
"files": [
"bin",
"src",
"scripts/postinstall.js",
"client-next/dist",
"README.md"
],
"scripts": {
"prepack": "npm --prefix client-next ci && npm --prefix client-next run build",
"postinstall": "node scripts/postinstall.js",
"start": "node bin/pglens",
"test": "node scripts/run-tests.js test/unit",
"test:coverage": "node scripts/run-tests.js test/unit --experimental-test-coverage --test-coverage-include=src/** --test-reporter=spec",
"test:integration": "node scripts/run-tests.js test/integration",
"test:e2e": "playwright test",
"test:all": "npm test && npm run test:integration && npm --prefix client-next test"
},
"keywords": [
"postgresql",
"database",
"viewer",
"cli"
],
"author": {
"name": "Tekeshwar Singh",
"email": "tekeshwarsingh2000@gmail.com",
"url": "https://github.com/tsvillain"
},
"repository": {
"type": "git",
"url": "https://github.com/tsvillain/pglens.git"
},
"bugs": {
"url": "https://github.com/tsvillain/pglens/issues"
},
"homepage": "https://github.com/tsvillain/pglens#readme",
"license": "MIT",
"dependencies": {
"commander": "^11.1.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"express": "^4.18.2",
"keytar": "^7.9.0",
"pino": "^9.14.0",
"pino-roll": "^3.1.0",
"postgres": "^3.4.3",
"sql-formatter": "^15.8.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@playwright/test": "^1.60.0"
}
}