-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.81 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
96
97
98
99
100
{
"name": "@minoru/react-dnd-treeview",
"description": "A draggable / droppable React-based treeview component.",
"version": "3.5.4",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/minop1205/react-dnd-treeview.git"
},
"author": "Minoru Okuyama <okuyama@analogic.jp> (https://github.com/minop1205/)",
"homepage": "https://github.com/minop1205/react-dnd-treeview",
"keywords": [
"drag and drop",
"dnd",
"react",
"tree",
"treeview",
"component",
"headless component",
"touch support",
"sortable",
"hierarchical data"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@juggle/resize-observer": "^3.4.0",
"dnd-multi-backend": "^9.0.0",
"framer-motion": "^12.38.0",
"react-dnd-html5-backend": "^16.0.1",
"react-dnd-touch-backend": "^16.0.1",
"react-use-measure": "^2.1.7"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^9.0.1",
"@mui/material": "^9.0.1",
"@rollup/plugin-alias": "^6.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@storybook/addon-themes": "^10.3.6",
"@storybook/addon-vitest": "^10.3.6",
"@storybook/builder-vite": "^10.3.6",
"@storybook/react": "^10.3.6",
"@storybook/react-vite": "^10.3.6",
"@types/hoist-non-react-statics": "^3.3.7",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/browser-playwright": "^4.1.5",
"@vitest/coverage-v8": "^4.1.5",
"gh-pages": "^6.3.0",
"jsdom": "^29.1.1",
"playwright": "^1.59.1",
"react": "^19.2.6",
"react-dnd": "^16.0.1",
"react-dom": "^19.2.6",
"rollup": "^4.60.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.37.0",
"storybook": "^10.3.6",
"storybook-css-modules-preset": "^1.1.1",
"ts-patch": "^4.0.1",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"typescript-transform-paths": "^3.5.6",
"vite": "^8.0.11",
"vitest": "^4.1.5"
},
"peerDependencies": {
"react": "18.x || 19.x",
"react-dnd": "15.x || 16.x",
"react-dom": "18.x || 19.x"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"check": "npx biome check --write src/",
"prepublish": "rm -rf ./dist && npm run build",
"test": "vitest run --project=unit",
"test:watch": "vitest --project=unit",
"storybook": "storybook dev -p 6006",
"storybook:build": "STORYBOOK_DISABLE_INTERACTIONS=true storybook build",
"storybook:test": "vitest --project=storybook",
"storybook:deploy": "npm run storybook:build && gh-pages -d storybook-static"
},
"bugs": {
"url": "https://github.com/minop1205/react-dnd-treeview/issues",
"email": "okuyama@analogic.jp"
}
}