mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-26 19:09:52 +00:00
* Basic rework of load workflow warning dialog * Better style * Add vue jest support * Mock vue component in jest test * nit * Make dialog maximizable
82 lines
2.3 KiB
JSON
82 lines
2.3 KiB
JSON
{
|
|
"name": "comfyui-frontend",
|
|
"private": true,
|
|
"version": "1.2.11",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "npm run typecheck && vite build",
|
|
"deploy": "npm run build && node scripts/deploy.js",
|
|
"zipdist": "node scripts/zipdist.js",
|
|
"typecheck": "tsc --noEmit",
|
|
"format": "prettier --write './**/*.{js,ts,tsx,vue}'",
|
|
"test": "npm run build && jest",
|
|
"test:generate:examples": "npx tsx tests-ui/extractExamples",
|
|
"test:generate": "npx tsx tests-ui/setup",
|
|
"test:browser": "npx playwright test",
|
|
"prepare": "husky || true",
|
|
"preview": "vite preview",
|
|
"lint": "eslint src",
|
|
"lint:fix": "eslint src --fix"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.24.7",
|
|
"@babel/preset-env": "^7.22.20",
|
|
"@eslint/js": "^9.8.0",
|
|
"@playwright/test": "^1.44.1",
|
|
"@types/jest": "^29.5.12",
|
|
"@types/lodash": "^4.17.6",
|
|
"@types/node": "^20.14.8",
|
|
"@vue/test-utils": "^2.4.6",
|
|
"@vue/vue3-jest": "^29.2.6",
|
|
"autoprefixer": "^10.4.19",
|
|
"babel-plugin-transform-import-meta": "^2.2.1",
|
|
"babel-plugin-transform-rename-import": "^2.3.0",
|
|
"chalk": "^5.3.0",
|
|
"eslint": "^9.8.0",
|
|
"eslint-plugin-vue": "^9.27.0",
|
|
"fs-extra": "^11.2.0",
|
|
"globals": "^15.9.0",
|
|
"husky": "^9.0.11",
|
|
"identity-obj-proxy": "^3.0.0",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"lint-staged": "^15.2.7",
|
|
"postcss": "^8.4.39",
|
|
"prettier": "^3.3.2",
|
|
"tailwindcss": "^3.4.4",
|
|
"ts-jest": "^29.1.4",
|
|
"ts-node": "^10.9.2",
|
|
"tsx": "^4.15.6",
|
|
"typescript": "^5.4.5",
|
|
"typescript-eslint": "^8.0.0",
|
|
"vite": "^5.2.0",
|
|
"vite-plugin-static-copy": "^1.0.5",
|
|
"zip-dir": "^2.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@atlaskit/pragmatic-drag-and-drop": "^1.2.1",
|
|
"@comfyorg/litegraph": "^0.7.42",
|
|
"@primevue/themes": "^4.0.0-rc.2",
|
|
"@vitejs/plugin-vue": "^5.0.5",
|
|
"class-transformer": "^0.5.1",
|
|
"dotenv": "^16.4.5",
|
|
"fuse.js": "^7.0.0",
|
|
"lodash": "^4.17.21",
|
|
"pinia": "^2.1.7",
|
|
"primeicons": "^7.0.0",
|
|
"primevue": "^4.0.0-rc.2",
|
|
"reflect-metadata": "^0.2.2",
|
|
"vue": "^3.4.31",
|
|
"vue-i18n": "^9.13.1",
|
|
"zod": "^3.23.8",
|
|
"zod-validation-error": "^3.3.0"
|
|
},
|
|
"lint-staged": {
|
|
"./**/*.{js,ts,tsx,vue}": [
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|