-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 848 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 848 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
{
"name": "duckerd",
"version": "0.1.4",
"description": "A CLI tool for generating ERD diagrams from DuckDB databases",
"author": "TobiLG <tobilg@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/tobilg/duckerd.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tobilg/duckerd/issues"
},
"homepage": "https://github.com/tobilg/duckerd#readme",
"bin": {
"duckerd": "dist/index.js"
},
"scripts": {
"build": "rm -rf dist && tsc",
"start": "ts-node src/index.ts"
},
"engines": {
"node": "^18.19 || >=20.0"
},
"keywords": ["duckdb", "erd", "diagram", "cli"],
"dependencies": {
"commander": "^13.1.0",
"duckdb-async": "^1.2.0"
},
"devDependencies": {
"@types/node": "^18.11.9",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}