-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.15 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.15 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
{
"name": "@betterdb/monitor",
"version": "0.22.0",
"description": "Monitor and observe your Valkey/Redis databases",
"bin": {
"betterdb": "./bin/betterdb.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"bin/",
"dist/",
"assets/"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "node scripts/build.mjs",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@inquirer/prompts": "^7.10.1",
"commander": "^14.0.3",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@betterdb/shared": "workspace:*",
"@types/node": "^22.19.15",
"@vercel/ncc": "^0.38.4",
"esbuild": "^0.27.4",
"typescript": "^5.9.3"
},
"peerDependencies": {
"better-sqlite3": ">=11.0.0"
},
"peerDependenciesMeta": {
"better-sqlite3": {
"optional": true
}
},
"keywords": [
"valkey",
"redis",
"monitor",
"database",
"cli",
"observability"
],
"author": "BetterDB",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/BetterDB-inc/monitor.git"
},
"homepage": "https://betterdb.com"
}