| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- {
- "name": "@d8d/file-management-ui",
- "version": "1.0.0",
- "description": "文件管理界面包 - 提供文件管理的完整前端界面,包括文件上传下载、CRUD操作、文件预览、搜索过滤等功能",
- "type": "module",
- "main": "src/index.ts",
- "types": "src/index.ts",
- "exports": {
- ".": {
- "types": "./src/index.ts",
- "import": "./src/index.ts",
- "require": "./src/index.ts"
- },
- "./components": {
- "types": "./src/components/index.ts",
- "import": "./src/components/index.ts",
- "require": "./src/components/index.ts"
- },
- "./hooks": {
- "types": "./src/hooks/index.ts",
- "import": "./src/hooks/index.ts",
- "require": "./src/hooks/index.ts"
- },
- "./api": {
- "types": "./src/api/index.ts",
- "import": "./src/api/index.ts",
- "require": "./src/api/index.ts"
- }
- },
- "files": [
- "src"
- ],
- "scripts": {
- "build": "unbuild",
- "dev": "tsc --watch",
- "test": "vitest run",
- "test:watch": "vitest",
- "test:coverage": "vitest run --coverage",
- "lint": "eslint src --ext .ts,.tsx",
- "typecheck": "tsc --noEmit"
- },
- "dependencies": {
- "@d8d/shared-types": "workspace:*",
- "@d8d/shared-ui-components": "workspace:*",
- "@d8d/file-module": "workspace:*",
- "@hookform/resolvers": "^5.2.1",
- "@tanstack/react-query": "^5.90.9",
- "axios": "^1.7.9",
- "class-variance-authority": "^0.7.1",
- "clsx": "^2.1.1",
- "date-fns": "^4.1.0",
- "dayjs": "^1.11.13",
- "hono": "^4.8.5",
- "lucide-react": "^0.536.0",
- "react": "^19.1.0",
- "react-dom": "^19.1.0",
- "react-hook-form": "^7.61.1",
- "react-router": "^7.1.3",
- "sonner": "^2.0.7",
- "tailwind-merge": "^3.3.1",
- "zod": "^4.0.15"
- },
- "devDependencies": {
- "@testing-library/jest-dom": "^6.8.0",
- "@testing-library/react": "^16.3.0",
- "@testing-library/user-event": "^14.6.1",
- "@types/node": "^22.10.2",
- "@types/react": "^19.2.2",
- "@types/react-dom": "^19.2.3",
- "@typescript-eslint/eslint-plugin": "^8.18.1",
- "@typescript-eslint/parser": "^8.18.1",
- "eslint": "^9.17.0",
- "jsdom": "^26.0.0",
- "typescript": "^5.8.3",
- "unbuild": "^3.4.0",
- "vitest": "^4.0.9"
- },
- "peerDependencies": {
- "react": "^19.1.0",
- "react-dom": "^19.1.0"
- },
- "keywords": [
- "file",
- "management",
- "upload",
- "download",
- "ui",
- "react",
- "crud",
- "minio"
- ],
- "author": "D8D Team",
- "license": "MIT"
- }
|