mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
545d8968fd
build(ui): fix husky path build(ui): fix hmr issue, remove emotion cache build(ui): clean up package.json build(ui): update gh action and npm scripts feat(ui): wip port lightbox to chakra theme feat(ui): wip use chakra theme tokens feat(ui): Add status text to main loading spinner feat(ui): wip chakra theme tweaking feat(ui): simply iaisimplemenu button feat(ui): wip chakra theming feat(ui): Theme Management feat(ui): Add Ocean Blue Theme feat(ui): wip lightbox fix(ui): fix lightbox mouse feat(ui): set default theme variants feat(ui): model manager chakra theme chore(ui): lint feat(ui): remove last scss feat(ui): fix switch theme feat(ui): Theme Cleanup feat(ui): Stylize Search Models Found List feat(ui): hide scrollbars feat(ui): fix floating button position feat(ui): Scrollbar Styling fix broken scripts This PR fixes the following scripts: 1) Scripts that can be executed within the repo's scripts directory. Note that these are for development testing and are not intended to be exposed to the user. configure_invokeai.py - configuration dream.py - the legacy CLI images2prompt.py - legacy "dream prompt" retriever invoke-new.py - new nodes-based CLI invoke.py - the legacy CLI under another name make_models_markdown_table.py - a utility used during the release/doc process pypi_helper.py - another utility used during the release process sd-metadata.py - retrieve JSON-formatted metadata from a PNG file 2) Scripts that are installed by pip install. They get placed into the venv's PATH and are intended to be the official entry points: invokeai-node-cli - new nodes-based CLI invokeai-node-web - new nodes-based web server invokeai - legacy CLI invokeai-configure - install time configuration script invokeai-merge - model merging script invokeai-ti - textual inversion script invokeai-model-install - model installer invokeai-update - update script invokeai-metadata" - retrieve JSON-formatted metadata from PNG files protect invocations against black autoformatting deps: upgrade to diffusers 0.14, safetensors 0.3, transformers 4.26, accelerate 0.16
104 lines
3.2 KiB
JSON
104 lines
3.2 KiB
JSON
{
|
|
"name": "invoke-ai-ui",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"scripts": {
|
|
"prepare": "cd ../../../ && husky install invokeai/frontend/web/.husky",
|
|
"dev": "vite dev",
|
|
"build": "npm run lint && vite build",
|
|
"preview": "vite preview",
|
|
"lint:madge": "madge --circular src/main.tsx",
|
|
"lint:eslint": "eslint --max-warnings=0",
|
|
"lint:prettier": "prettier --check .",
|
|
"lint:tsc": "tsc --noEmit",
|
|
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:tsc && npm run lint:madge",
|
|
"fix": "eslint --fix . && prettier --loglevel warn --write . && tsc --noEmit",
|
|
"lint-staged": "lint-staged",
|
|
"postinstall": "patch-package && yarn run theme",
|
|
"theme": "chakra-cli tokens src/theme/theme.ts",
|
|
"theme:watch": "chakra-cli tokens src/theme/theme.ts --watch"
|
|
},
|
|
"madge": {
|
|
"detectiveOptions": {
|
|
"ts": {
|
|
"skipTypeImports": true
|
|
},
|
|
"tsx": {
|
|
"skipTypeImports": true
|
|
}
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"**/*.{js,jsx,ts,tsx,cjs,json,html,scss}": [
|
|
"prettier --write",
|
|
"eslint --fix"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@chakra-ui/anatomy": "^2.1.1",
|
|
"@chakra-ui/icons": "^2.0.17",
|
|
"@chakra-ui/react": "^2.5.1",
|
|
"@chakra-ui/theme-tools": "^2.0.16",
|
|
"@emotion/react": "^11.10.6",
|
|
"@emotion/styled": "^11.10.6",
|
|
"@reduxjs/toolkit": "^1.9.2",
|
|
"chakra-ui-contextmenu": "^1.0.5",
|
|
"dateformat": "^5.0.3",
|
|
"formik": "^2.2.9",
|
|
"framer-motion": "^9.0.4",
|
|
"i18next": "^22.4.10",
|
|
"i18next-browser-languagedetector": "^7.0.1",
|
|
"i18next-http-backend": "^2.1.1",
|
|
"konva": "^8.4.2",
|
|
"lodash": "^4.17.21",
|
|
"re-resizable": "^6.9.9",
|
|
"react": "^18.2.0",
|
|
"react-colorful": "^5.6.1",
|
|
"react-dom": "^18.2.0",
|
|
"react-dropzone": "^14.2.3",
|
|
"react-hotkeys-hook": "4.3.5",
|
|
"react-i18next": "^12.1.5",
|
|
"react-icons": "^4.7.1",
|
|
"react-konva": "^18.2.4",
|
|
"react-konva-utils": "^0.3.2",
|
|
"react-redux": "^8.0.5",
|
|
"react-transition-group": "^4.4.5",
|
|
"react-zoom-pan-pinch": "^2.6.1",
|
|
"redux-deep-persist": "^1.0.7",
|
|
"redux-persist": "^6.0.0",
|
|
"socket.io-client": "^4.6.0",
|
|
"use-image": "^1.1.0",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@chakra-ui/cli": "^2.3.0",
|
|
"@fontsource/inter": "^4.5.15",
|
|
"@types/dateformat": "^5.0.0",
|
|
"@types/react": "^18.0.28",
|
|
"@types/react-dom": "^18.0.11",
|
|
"@types/react-transition-group": "^4.4.5",
|
|
"@types/uuid": "^9.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.52.0",
|
|
"@typescript-eslint/parser": "^5.52.0",
|
|
"@vitejs/plugin-react-swc": "^3.2.0",
|
|
"babel-plugin-transform-imports": "^2.0.0",
|
|
"eslint": "^8.34.0",
|
|
"eslint-config-prettier": "^8.6.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-react": "^7.32.2",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"husky": "^8.0.3",
|
|
"lint-staged": "^13.1.2",
|
|
"madge": "^6.0.0",
|
|
"patch-package": "^6.5.1",
|
|
"postinstall-postinstall": "^2.1.0",
|
|
"prettier": "^2.8.4",
|
|
"rollup-plugin-visualizer": "^5.9.0",
|
|
"terser": "^5.16.4",
|
|
"vite": "^4.1.2",
|
|
"vite-plugin-eslint": "^1.8.1",
|
|
"vite-tsconfig-paths": "^4.0.5",
|
|
"yarn": "^1.22.19"
|
|
}
|
|
}
|