-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.65 KB
/
package.json
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
{
"name": "dbshow",
"type": "module",
"version": "0.0.9",
"description": "A CLI tool to show database schema, support Postgres, MySQL, MariaDB, SQLite, Microsoft SQL Server, Oracle Database etc.",
"author": "xbmlz <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/xbmlz/dbshow#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/xbmlz/dbshow.git"
},
"bugs": {
"url": "https://github.com/xbmlz/dbshow/issues"
},
"keywords": [
"cli",
"database",
"schema",
"mysql",
"postgresql",
"sqlite",
"docs",
"markdown",
"word"
],
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"dbshow": "bin/dbshow.mjs"
},
"files": [
"dist"
],
"scripts": {
"dev": "esno src/cli.ts",
"build": "unbuild",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@inquirer/prompts": "^2.3.0",
"gradient-string": "^2.0.2",
"mysql2": "^3.5.0",
"ora": "^6.3.1",
"oracledb": "^6.0.2",
"pg": "^8.11.1",
"pg-hstore": "^2.3.4",
"quicktype-core": "^23.0.158",
"sequelize": "^6.32.1",
"sql-ddl-to-json-schema": "^4.1.0",
"tedious": "^16.2.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.7",
"@types/gradient-string": "^1.1.2",
"@types/json-schema": "^7.0.12",
"@types/node": "^20.4.0",
"bumpp": "^9.1.1",
"eslint": "^8.44.0",
"esno": "^0.16.3",
"typescript": "^5.1.6",
"unbuild": "^1.2.1"
},
"eslintConfig": {
"extends": "@antfu"
}
}