-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.08 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.08 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
80
81
82
83
{
"name": "@carllee1983/dbcli",
"version": "1.5.0",
"description": "Database CLI for AI agents",
"type": "module",
"publishConfig": {
"access": "public"
},
"bin": {
"dbcli": "./dist/cli.mjs"
},
"license": "MIT",
"author": "Carl Lee",
"repository": {
"type": "git",
"url": "git+https://github.com/CarlLee1983/dbcli.git"
},
"homepage": "https://github.com/CarlLee1983/dbcli#readme",
"bugs": {
"url": "https://github.com/CarlLee1983/dbcli/issues"
},
"keywords": [
"database",
"cli",
"ai",
"agent",
"postgresql",
"mysql",
"mariadb",
"permissions",
"blacklist"
],
"engines": {
"node": ">=18.0.0",
"bun": ">=1.3.3"
},
"files": [
"dist/",
"assets/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"dev": "bun run src/cli.ts",
"build": "bun run scripts/build.ts",
"prepublishOnly": "bun run build",
"test": "bun test",
"test:unit": "bun test tests/unit tests/core",
"test:integration": "bun test tests/integration",
"test:docker": "docker compose -f docker-compose.test.yml up -d --wait && bun test tests/integration/adapters; docker compose -f docker-compose.test.yml down",
"test:run": "vitest --run",
"test:bench": "vitest bench --run",
"bench": "bun run test:bench",
"lint": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\""
},
"dependencies": {
"cli-table3": "^0.6.3",
"commander": "13.0.0",
"dotenv": "^16.3.1",
"mongodb": "^7.2.0",
"mysql2": "^3.20.0",
"pg": "^8.20.0",
"picocolors": "^1.1.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@inquirer/prompts": "^5.0.0",
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^9.0.0",
"happy-dom": "^12.0.0",
"jsdom": "^23.0.0",
"prettier": "^3.0.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.57.2",
"vitest": "^1.2.0"
}
}