forked from alfed7/draggable-tree-view
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.56 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.56 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
{
"name": "@react5/tree-view",
"private": false,
"version": "0.1.25",
"type": "module",
"description": "A simple and customizable tree view for React with drag-n-drop for repositioning.",
"author": {
"name": "React5.com",
"url": "https://github.com/react5com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react5com/tree-view.git"
},
"files": ["dist"],
"main": "dist/tree-view.umd.cjs",
"module": "dist/tree-view.js",
"browser": "dist/tree-view.umd.cjs",
"types": "dist/types/tree-view.d.ts",
"style": "dist/style.css",
"scripts": {
"dev": "vite",
"dev-watch": "vite build --watch",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "jest",
"test-watch": "jest --watch"
},
"peerDependencies": {
"clsx": ">=2",
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"clsx": "^2.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"@eslint/js": "^9.20.0",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.20.1",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1",
"vite": "^6.1.1",
"vite-plugin-dts": "^4.5.0"
}
}