-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1019 Bytes
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1019 Bytes
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
{
"name": "agent-db-cli",
"version": "0.1.0",
"description": "供 AI Agent 使用的只读多数据源数据库查询 CLI",
"private": true,
"packageManager": "pnpm@11.13.0",
"type": "module",
"bin": {
"agent-db": "dist/cli.js"
},
"engines": {
"node": ">=22.13"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/cli.ts",
"test": "vitest run --exclude \"test/integration/**\"",
"test:watch": "vitest",
"test:it": "vitest run test/integration",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"keywords": [
"database",
"cli",
"readonly",
"mysql",
"postgres",
"dm",
"agent",
"skill"
],
"license": "UNLICENSED",
"dependencies": {
"commander": "^12.1.0",
"dmdb": "^1.0.0",
"mysql2": "^3.11.0",
"pg": "^8.12.0",
"yaml": "^2.5.0"
},
"devDependencies": {
"@types/node": "^22.5.0",
"@types/pg": "^8.11.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
}
}