-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.35 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.35 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@ilhanaydinli/dbcli",
"version": "1.9.1",
"description": "A powerful, interactive CLI tool for managing database connections, imports, exports, and operations.",
"module": "src/index.ts",
"type": "module",
"bin": {
"dbcli": "./bin/dbcli.cjs"
},
"files": [
"dist",
"bin",
"scripts"
],
"keywords": [
"cli",
"database",
"postgresql",
"mongodb",
"mysql",
"mariadb",
"mssql",
"sqlserver",
"bun",
"import",
"export",
"backup"
],
"license": "MIT",
"author": "İlhan Aydınlı",
"repository": {
"type": "git",
"url": "https://github.com/ilhanaydinli/dbcli.git"
},
"engines": {
"bun": ">=1.0.0"
},
"scripts": {
"preinstall": "node scripts/check-bun.cjs",
"start": "bun run src/index.ts",
"dev": "bun run --watch src/index.ts",
"build": "bun build src/index.ts --outdir ./dist --target bun",
"check": "bun run check:types && bun run check:lint && bun run check:format && bun run knip",
"check:types": "bunx --bun tsc --noEmit",
"check:lint": "bunx --bun eslint src tests",
"check:format": "bunx --bun prettier --check '{src,tests}/**/*.{js,ts,json}'",
"fix": "bun run fix:lint && bun run fix:format",
"fix:lint": "bunx --bun eslint src tests --fix",
"fix:format": "bunx --bun prettier --write '{src,tests}/**/*.{js,ts,json}'",
"test": "bun test",
"knip": "knip-bun",
"ruler": "ruler apply",
"prepublishOnly": "bun run build"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@intellectronica/ruler": "^0.3.39",
"@types/bun": "latest",
"@types/mssql": "^12.3.0",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-import-sort": "^13.0.0",
"globals": "^17.5.0",
"knip": "^6.9.0",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.1"
},
"dependencies": {
"@clack/prompts": "^1.3.0",
"mssql": "^12.5.0",
"zod": "^4.4.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}