-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.21 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.21 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
{
"name": "react-native-tree-visualizer",
"version": "1.0.2",
"description": "ui component for visualizing a tree, updating the tree nodes, delete the tree nodes and other operations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "babel src --out-dir dist --extensions '.ts,.tsx' && tsc --emitDeclarationOnly",
"clean": "rm -rf dist"
},
"keywords": [
"tree-visualization",
"data-visualization",
"graph-visualization",
"tree-visualizer",
"custom-nodes",
"custom-shapes",
"custom-edges",
"curved-edges",
"interactive-tree",
"editable-tree",
"leetcode-visualizer",
"data-structure",
"d3",
"react-component",
"svg",
"typescript"
],
"author": "macha vivek",
"license": "ISC",
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.71.0"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@types/react": "^19.2.2",
"@types/react-native": "^0.72.8",
"typescript": "^5.9.3"
},
"dependencies": {
"react-native-svg": "^15.14.0"
}
}