-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.08 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
{
"name": "@parallelbytes/react-virtualized-tree",
"version": "2.0.0",
"description": "A virtualized tree view component using React and Konva",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "vite build",
"build:demo": "vite build --config vite.demo.config.ts",
"dev": "vite build --watch",
"demo": "vite --open /demo/index.html"
},
"peerDependencies": {
"react": ">=18 <20",
"react-dom": ">=18 <20",
"konva": ">=9 <11",
"react-konva": ">=18 <20",
"react-konva-utils": ">=1 <=2"
},
"dependencies": {},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"react",
"konva",
"tree",
"org-chart",
"virtualized",
"canvas"
],
"files": [
"dist",
"README.md",
"package.json"
],
"devDependencies": {
"@types/react": ">=18 <20",
"@types/react-dom": ">=18 <20",
"@vitejs/plugin-react": ">=4 <5",
"typescript": ">=5 <6",
"vite": ">=5 <6",
"vite-plugin-dts": ">=3 <4"
}
}