refactor: Adjust project structure

This commit is contained in:
hayden
2024-09-20 11:17:59 +08:00
parent 6f61688bd8
commit d96aff80c2
19 changed files with 3147 additions and 9017 deletions

39
package.json Normal file
View File

@@ -0,0 +1,39 @@
{
"name": "comfyui-model-manager",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"prepare": "husky"
},
"devDependencies": {
"@types/node": "^22.5.5",
"@vitejs/plugin-vue": "^5.1.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.10.0",
"eslint-plugin-vue": "^9.28.0",
"husky": "^9.1.6",
"less": "^4.2.0",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"tailwindcss": "^3.4.12",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0",
"vite": "^5.4.6"
},
"dependencies": {
"primevue": "^4.0.7",
"vue": "^3.4.31",
"vue-i18n": "^9.13.1"
},
"lint-staged": {
"./**/*.{js,ts,tsx,vue}": [
"prettier --write",
"git add"
]
}
}