-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.21 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.21 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
{
"name": "sql-cli",
"version": "0.0.1",
"description": "Lightweight CLI for MySQL and SQLite — for humans and AI agents",
"bin": {
"sql-cli": "./bin/run.js"
},
"type": "module",
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"scripts": {
"build": "tsc -b",
"prepack": "pnpm build && oclif manifest",
"postpack": "rm -f oclif.manifest.json",
"dev": "node ./bin/dev.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"clean": "rm -rf dist tsconfig.tsbuildinfo"
},
"dependencies": {
"@oclif/core": "^4.0.0",
"better-sqlite3": "^11.0.0",
"cli-table3": "^0.6.5",
"mysql2": "^3.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@types/better-sqlite3": "^7.0.0",
"@types/node": "^22.0.0",
"oclif": "^4.0.0",
"tsx": "^4.0.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
},
"oclif": {
"bin": "sql-cli",
"dirname": "sql-cli",
"commands": "./dist/commands",
"topicSeparator": " ",
"topics": {
"profile": {
"description": "manage connection profiles"
}
}
},
"engines": {
"node": ">=20"
}
}