-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 825 Bytes
/
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
{
"name": "@drizzle-lab/visualizer",
"version": "0.5.0",
"type": "module",
"private": true,
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@dagrejs/dagre": "^1.1.3",
"@repo/ui": "*",
"@xyflow/react": "^12.0.4",
"html-to-image": "1.11.11",
"shiki": "^1.14.1"
},
"devDependencies": {
"@drizzle-lab/api": "*",
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"drizzle-orm": ">=0.36.0",
"react": ">=18"
},
"engines": {
"node": ">=20.0.0"
},
"prettier": {}
}