-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1016 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 1016 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
26
27
28
29
30
31
32
{
"name": "panopticum",
"version": "1.0.0",
"description": "A tool for developers and QA — web interface for viewing and managing database connections. Designed for deployment in Kubernetes or Docker.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:detail-editor": "node scripts/bundle-detail-editor.mjs",
"build:query-editor": "node scripts/bundle-query-editor.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theSharque/panopticum.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/theSharque/panopticum/issues"
},
"homepage": "https://github.com/theSharque/panopticum#readme",
"devDependencies": {
"esbuild": "^0.27.3"
},
"dependencies": {
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-sql": "^6.5.5",
"@codemirror/state": "^6.5.4",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.39.16"
}
}