-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.2 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.2 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
{
"name": "@ilhanaydinli/dbcli",
"version": "1.2.3",
"description": "A powerful, interactive CLI tool for managing database connections, imports, exports, and operations.",
"module": "src/index.ts",
"type": "module",
"bin": {
"dbcli": "./dist/index.js"
},
"files": [
"dist"
],
"keywords": [
"cli",
"database",
"postgresql",
"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": {
"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.34",
"@types/bun": "latest",
"@types/update-notifier": "^6.0.8",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.3.0",
"knip": "^5.83.1",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0"
},
"dependencies": {
"@clack/prompts": "^1.0.0",
"update-notifier": "^7.3.1",
"zod": "^4.3.6"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}