-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.49 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "erd-visualizer",
"displayName": "ERD Visualizer",
"publisher": "dukeabaddon",
"description": "Design, inspect, and export entity-relationship diagrams from SQL or JSON without leaving VS Code.",
"version": "0.1.2",
"main": "./out/extension.js",
"icon": "icon.png",
"galleryBanner": {
"color": "#0f172a",
"theme": "dark"
},
"categories": [
"Visualization",
"Data Science"
],
"keywords": [
"ERD",
"database",
"diagram"
],
"repository": {
"type": "git",
"url": "https://github.com/Dukeabaddon/ERD-Visualizer.git"
},
"bugs": {
"url": "https://github.com/Dukeabaddon/ERD-Visualizer/issues"
},
"homepage": "https://github.com/Dukeabaddon/ERD-Visualizer#readme",
"license": "MIT",
"engines": {
"vscode": "^1.85.0"
},
"dependencies": {
"@fission-ai/openspec": "^0.14.0",
"dagre": "^0.8.5",
"html-to-image": "^1.11.11",
"node-sql-parser": "^4.15.2",
"pdf-lib": "^1.17.1",
"zod": "^3.22.2"
},
"contributes": {
"commands": [
{
"command": "erdVisualizer.open",
"title": "ERD: Visualize current schema"
},
{
"command": "erdVisualizer.openForEditor",
"title": "ERD: Visualize current editor",
"icon": {
"dark": "resources/icons/erd-dark.svg",
"light": "resources/icons/erd-light.svg"
}
},
{
"command": "erdVisualizer.openFromFile",
"title": "ERD: Visualize schema from file"
}
],
"menus": {
"editor/title": [
{
"command": "erdVisualizer.openForEditor",
"when": "resourceLangId == json || resourceLangId == sql || resourceExtname == .json || resourceExtname == .sql",
"group": "navigation"
}
]
}
},
"activationEvents": [
"onCommand:erdVisualizer.open",
"onCommand:erdVisualizer.openForEditor",
"onCommand:erdVisualizer.openFromFile"
],
"devDependencies": {
"@jest/test-sequencer": "^29.7.0",
"@types/dagre": "^0.7.48",
"@types/jest": "^29.5.3",
"@types/node": "^24.10.1",
"@types/vscode": "^1.85.0",
"@vscode/vsce": "^3.7.0",
"jest": "^29.6.0",
"ts-jest": "^29.1.0",
"typescript": "^5.9.3"
},
"scripts": {
"compile": "tsc -p tsconfig.json",
"postcompile": "node ./scripts/copy-resources.js",
"test:contrib": "node ./scripts/validate-editor-icon.js",
"test": "jest --runInBand",
"vscode:prepublish": "pnpm run compile"
},
"packageManager": "pnpm@10.22.0"
}