Files
sheeteasyAI/package.json
sheetEasy AI Team e5ee01553a 히스토리 패널 UI 작업 완료
- T-008 태스크 완료: 히스토리 패널 UI 마크업 구현 (슬라이드 인)
- 히스토리, UNDO, 전송하기 버튼을 세로로 균등 간격 배치
- Tailwind CSS v3/v4 버전 충돌 문제 해결
  - v4 패키지 완전 제거 (@tailwindcss/postcss 등)
  - PostCSS 설정을 v3 방식으로 수정
  - CSS 파일에서 수동 클래스 정의 제거
  - Vite 캐시 완전 삭제로 설정 변경 반영
- 히스토리 패널 기능 개선
  - 우측 슬라이드 인 애니메이션
  - 파일 업로드 시에만 표시
  - 상태별 아이콘과 시간순 로그 리스트
  - 재적용 및 전체 삭제 기능
- 새로운 rule 파일 생성: tailwind-css-management.mdc
2025-06-26 18:25:25 +09:00

91 lines
2.7 KiB
JSON

{
"name": "sheeteasy-ai",
"private": true,
"version": "0.1.0",
"description": "AI-powered Excel file processor with local processing",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@univerjs/core": "^0.8.2",
"@univerjs/design": "^0.8.2",
"@univerjs/docs": "^0.8.2",
"@univerjs/docs-ui": "^0.8.2",
"@univerjs/engine-formula": "^0.8.2",
"@univerjs/engine-numfmt": "^0.8.2",
"@univerjs/engine-render": "^0.8.2",
"@univerjs/presets": "^0.8.2",
"@univerjs/sheets": "^0.8.2",
"@univerjs/sheets-formula": "^0.8.2",
"@univerjs/sheets-formula-ui": "^0.8.2",
"@univerjs/sheets-numfmt": "^0.8.2",
"@univerjs/sheets-numfmt-ui": "^0.8.2",
"@univerjs/sheets-ui": "^0.8.2",
"@univerjs/ui": "^0.8.2",
"@univerjs/uniscript": "^0.8.2",
"@zwight/luckyexcel": "^1.1.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"file-saver": "^2.0.5",
"lucide-react": "^0.468.0",
"luckyexcel": "^1.0.1",
"luckysheet": "^2.1.13",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.5.4",
"zustand": "^5.0.2"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/file-saver": "^2.0.7",
"@types/jest": "^30.0.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/ui": "^3.2.4",
"autoprefixer": "^10.4.20",
"buffer": "^6.0.3",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.12.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"stream-browserify": "^3.0.0",
"tailwindcss": "^3.4.17",
"typescript": "~5.6.2",
"vite": "^6.0.1",
"vitest": "^3.2.4"
},
"keywords": [
"excel",
"ai",
"spreadsheet",
"local-processing",
"privacy"
],
"author": "sheetEasy AI Team",
"license": "MIT",
"overrides": {
"@wendellhu/redi": "0.18.3"
}
}