UNPKG

aiwf

Version:

AI Workflow Framework for Claude Code with multi-language support (Korean/English)

53 lines 1.45 kB
{ "name": "web-app", "displayName": "웹 애플리케이션 (React + TypeScript)", "description": "React 18과 TypeScript로 구성된 모던 웹 애플리케이션 템플릿", "type": "web-app", "language": "typescript", "framework": "react", "features": [ "React 18", "TypeScript", "Vite", "React Router", "Zustand", "Tailwind CSS", "AIWF Dashboard" ], "structure": { "src": "소스 코드", "public": "정적 파일", ".aiwf": "AIWF 설정 및 메타데이터", "tests": "테스트 파일" }, "dependencies": { "react": "^18.2.0", "react-dom": "^18.2.0", "react-router-dom": "^6.14.0", "zustand": "^4.3.8", "axios": "^1.4.0" }, "devDependencies": { "@types/react": "^18.2.0", "@types/react-dom": "^18.2.0", "@typescript-eslint/eslint-plugin": "^5.60.0", "@typescript-eslint/parser": "^5.60.0", "@vitejs/plugin-react": "^4.0.0", "autoprefixer": "^10.4.14", "eslint": "^8.43.0", "eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-refresh": "^0.4.0", "postcss": "^8.4.24", "tailwindcss": "^3.3.2", "typescript": "^5.1.0", "vite": "^4.3.0" }, "scripts": { "dev": "vite", "build": "tsc && vite build", "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", "preview": "vite preview", "test": "jest", "aiwf": "node .aiwf/scripts/cli.js" } }