-
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.59 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.59 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": "lebu",
"version": "0.1.1",
"description": "Terminal connection manager for SSH, databases, and SFTP",
"type": "module",
"main": "./dist/cli.js",
"bin": {
"lebu": "./dist/cli.js"
},
"files": [
"dist/**/*"
],
"scripts": {
"dev": "bun run src/cli.ts",
"build": "bun build src/cli.ts --outfile dist/cli.js --target node --format esm --packages external && sed -i '' '1s|#!/usr/bin/env bun|#!/usr/bin/env node|' dist/cli.js",
"build:binary": "bun build src/cli.ts --compile --outfile lebu",
"prepublishOnly": "npm run build"
},
"keywords": [
"ssh",
"sftp",
"database",
"postgres",
"mysql",
"mongodb",
"redis",
"connection-manager",
"cli",
"terminal",
"file-manager",
"devops"
],
"author": "https://github.com/bikidsx",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bikidsx/lebu.git"
},
"homepage": "https://github.com/bikidsx/lebu#readme",
"bugs": {
"url": "https://github.com/bikidsx/lebu/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@inquirer/prompts": "^7.2.1",
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"conf": "^13.0.1",
"fuse.js": "^7.0.0",
"ioredis": "^5.8.2",
"keytar": "^7.9.0",
"mongodb": "^7.0.0",
"mysql2": "^3.15.3",
"ora": "^8.1.1",
"pg": "^8.16.3",
"ssh2": "^1.17.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^24.10.1",
"@types/pg": "^8.15.6",
"@types/ssh2": "^1.15.5",
"typescript": "^5.9.3"
}
}