-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
88 lines (88 loc) · 2.43 KB
/
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
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
{
"name": "he-tree-react",
"version": "1.1.4",
"license": "MIT",
"author": "phphe <phphe@outlook.com> (https://github.com/phphe)",
"description": "React draggable sortable tree component.",
"keywords": [
"draggable tree",
"sortable tree",
"React component"
],
"repository": "https://github.com/phphe/he-tree-react.git",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"jsdelivr": "dist/index.iife.js",
"unpkg": "dist/index.iife.js",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build --config vite.build.js && vite build --config vite.build.js -- --iife && rm -rf dist/src",
"build:web": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"coverage": "vitest run --coverage",
"test": "vitest",
"test:ui": "vitest --ui",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"helper-js": "^3.1.5",
"react-base-virtual-list": "^1.0.0"
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@types/react-test-renderer": "^18.0.7",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@unocss/reset": "^0.58.4",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.3.1",
"@vitest/ui": "^1.3.1",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"immer": "^10.0.3",
"jsdom": "^24.0.0",
"react-router-dom": "^6.22.2",
"react-test-renderer": "^18.2.0",
"typedoc": "^0.25.9",
"typedoc-plugin-inline-sources": "^1.0.2",
"typescript": "^5.2.2",
"unocss": "^0.58.4",
"use-immer": "^0.9.0",
"vite": "^5.0.8",
"vite-plugin-dts": "^3.7.2",
"vitepress": "1.0.0-rc.44",
"vitest": "^1.3.1",
"vue": "^3.4.21"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"search-insights"
]
}
}
}