mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-04 07:00:23 +00:00
- Vue 3 + TypeScript + Vite project scaffold - PrimeVue UI components integration - VueFlow for node-based canvas editor - Pinia stores for state management (comfy, ui, workspace) - Workspace layout with sidebar navigation - Canvas view with node editor components - Custom node components (FlowNode, NodeHeader, NodeSlots, NodeWidgets) - Widget components (slider, select, toggle, text, number, color) - Authentication view mockup - ComfyUI API service integration scaffold - Node definitions and type system - Tailwind CSS styling - Node_info documentation for ComfyUI nodes 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
55 lines
1.7 KiB
JSON
55 lines
1.7 KiB
JSON
{
|
|
"name": "@comfyorg/comfyui-prototypes",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"description": "Prototype frontend for ComfyUI",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc --noEmit && vite build",
|
|
"preview": "vite preview",
|
|
"typecheck": "vue-tsc --noEmit",
|
|
"lint": "oxlint src && eslint src --cache",
|
|
"lint:fix": "oxlint src --fix && eslint src --cache --fix",
|
|
"format": "prettier --write './**/*.{js,ts,tsx,vue,mts,css,json}' --cache",
|
|
"format:check": "prettier --check './**/*.{js,ts,tsx,vue,mts,css,json}' --cache"
|
|
},
|
|
"dependencies": {
|
|
"@primeuix/styled": "^0.3.2",
|
|
"@primevue/icons": "^4.2.5",
|
|
"@primevue/themes": "^4.2.5",
|
|
"@vue-flow/background": "^1.3.2",
|
|
"@vue-flow/core": "^1.48.0",
|
|
"@vueuse/core": "^11.0.0",
|
|
"axios": "^1.11.0",
|
|
"es-toolkit": "^1.39.9",
|
|
"pinia": "^2.2.2",
|
|
"primeicons": "^7.0.0",
|
|
"primevue": "^4.2.5",
|
|
"vue": "^3.5.13",
|
|
"vue-router": "^4.4.3",
|
|
"zod": "^3.24.1"
|
|
},
|
|
"devDependencies": {
|
|
"@iconify/json": "^2.2.380",
|
|
"@primevue/auto-import-resolver": "^4.5.0",
|
|
"@tailwindcss/vite": "^4.1.12",
|
|
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
|
|
"@types/node": "^20.14.10",
|
|
"@vitejs/plugin-vue": "^5.1.4",
|
|
"eslint": "^9.35.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-prettier": "^5.5.4",
|
|
"eslint-plugin-vue": "^10.4.0",
|
|
"oxlint": "^1.28.0",
|
|
"prettier": "^3.6.2",
|
|
"tailwindcss": "^4.1.12",
|
|
"typescript": "~5.9.2",
|
|
"typescript-eslint": "^8.44.0",
|
|
"unplugin-icons": "^0.22.0",
|
|
"unplugin-vue-components": "^0.28.0",
|
|
"vite": "^5.4.19",
|
|
"vue-tsc": "^3.0.7"
|
|
}
|
|
}
|