-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.03 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
{
"name": "@obsessiondb/chcli",
"version": "0.1.1-beta.7",
"description": "Lightweight ClickHouse CLI — run queries from the terminal via inline SQL, files, or stdin",
"type": "module",
"bin": {
"chcli": "dist/chcli.js"
},
"files": [
"dist"
],
"keywords": [
"clickhouse",
"cli",
"sql",
"database",
"query"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/obsessiondb/chcli.git"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "bun build index.ts --outfile dist/chcli.js --target node --packages external",
"test": "bun run build && bun test",
"test:env": "doppler run -p chcli -c ci -- bun run test",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "bun run ./scripts/manual-release.ts"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@clickhouse/client": "^1.17.0"
}
}