-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.95 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.95 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
101
102
103
104
105
106
{
"name": "rstree-ui",
"version": "0.1.8",
"type": "module",
"description": "A modern React tree component library with virtualization, search, and Tailwind CSS support. Features include multi-select, checkboxes, custom icons, fuzzy search with highlighting, and virtual scrolling for large datasets.",
"keywords": [
"react",
"tree",
"component",
"ui",
"tailwindcss",
"virtualization",
"search",
"typescript",
"tree-view",
"tree-select",
"multi-select",
"checkbox",
"fuzzy-search",
"virtual-scroll",
"performance"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fireangle/rstree.git"
},
"homepage": "https://rstree.pages.dev",
"bugs": {
"url": "https://github.com/fireangle/rstree/issues"
},
"files": [
"dist",
"src",
"README.md"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./style.css": "./dist/style.css"
},
"scripts": {
"build:css": "npx @tailwindcss/cli -i ./src/index.css -o ./dist/style.css --minify",
"build:css:watch": "npx @tailwindcss/cli -i ./src/index.css -o ./dist/style.css --watch",
"build:js": "tsc -b && vite build",
"build:js:watch": "vite build --watch",
"build": "tsc -b && vite build",
"dev": "vite build --watch",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"prepublishOnly": "pnpm build && pnpm test && pnpm lint",
"version": "pnpm build"
},
"dependencies": {
"@tanstack/react-virtual": "^3.13.12",
"clsx": "^2.1.1",
"lucide-react": "^0.539.0",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@tailwindcss/cli": "^4.1.11",
"@tailwindcss/postcss": "^4.1.11",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"@vitejs/plugin-react": "^5.0.0",
"autoprefixer": "^10",
"concurrently": "^9.1.2",
"eslint": "^9.33.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"jsdom": "^25.0.1",
"postcss": "^8",
"tailwindcss": ">=4.0.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.39.1",
"vite": "^7.1.2",
"vite-plugin-dts": "^4.5.4",
"vitest": "^2.1.9"
},
"peerDependencies": {
"react": ">=19.0.0",
"react-dom": ">=19.0.0",
"tailwindcss": ">=3.0.0"
},
"peerDependenciesMeta": {
"tailwindcss": {
"optional": true
}
}
}